Overview
| Comment: | fix version, fix workflows bump rustls-webpki to 0.103.13 (fixes 2 lowsec issues) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | release | v0.6.5 |
| Files: | files | file ages | folders |
| SHA3-256: |
1c4b7020171968847355b1cd63e61881 |
| User & Date: | arcade on 2026-04-23 10:03:12.410 |
| Other Links: | branch diff | manifest | tags |
Context
|
2026-04-23
| ||
| 10:03 | fix version, fix workflows bump rustls-webpki to 0.103.13 (fixes 2 lowsec issues) leaf check-in: 1c4b702017 user: arcade tags: release, v0.6.5 | |
| 10:00 | fix version (I missed one bump recently) leaf check-in: 3b5fe61104 user: arcade tags: trunk | |
|
2026-04-18
| ||
| 17:15 | bump tgbot and other deps, fixes a few critical issues check-in: a6a79a67ba user: arcade tags: release, v0.6.4 | |
Changes
Modified .github/workflows/rust-clippy.yml
from [150927a414]
to [b19cf4cd44].
1 | name: rust-ci | > > > | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
name: rust-ci
on:
push:
branches: [ master, release ]
pull_request:
# sccache enable for rust/C builds
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
rust-ci-run:
name: Run rust-clippy analyzing and tests
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
permissions:
contents: read
steps:
# SETUP
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: mozilla-actions/sccache-action@v0.0.10
# TESTS
- name: Run tests
run: cargo test --all-targets --all-features
# CLIPPY
- name: Run rust-clippy
|
| ︙ | ︙ |
Modified Cargo.lock
from [1c194a2db5]
to [3a1addb946].
| ︙ | ︙ | |||
1372 1373 1374 1375 1376 1377 1378 | "libc", "linux-raw-sys", "windows-sys 0.61.2", ] [[package]] name = "rustls" | | | | 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 | "libc", "linux-raw-sys", "windows-sys 0.61.2", ] [[package]] name = "rustls" version = "0.23.39" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c2c118cb077cca2822033836dfb1b975355dfb784b5e8da48f7b6c5db74e60e" dependencies = [ "aws-lc-rs", "log", "once_cell", "rustls-pki-types", "rustls-webpki", "subtle", |
| ︙ | ︙ | |||
1445 1446 1447 1448 1449 1450 1451 | name = "rustls-platform-verifier-android" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" [[package]] name = "rustls-webpki" | | | | 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 | name = "rustls-platform-verifier-android" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" [[package]] name = "rustls-webpki" version = "0.103.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" dependencies = [ "aws-lc-rs", "ring", "rustls-pki-types", "untrusted", ] |
| ︙ | ︙ | |||
1651 1652 1653 1654 1655 1656 1657 | "async-process", "blocking", "futures-lite", ] [[package]] name = "smtp2tg" | | | 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 | "async-process", "blocking", "futures-lite", ] [[package]] name = "smtp2tg" version = "0.6.5" dependencies = [ "async-compat", "config", "hostname", "html-escape", "just-getopt", "lazy_static", |
| ︙ | ︙ | |||
2387 2388 2389 2390 2391 2392 2393 | name = "windows_x86_64_msvc" version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" | | | | 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 | name = "windows_x86_64_msvc" version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0" dependencies = [ "memchr", ] [[package]] name = "wit-bindgen" version = "0.57.1" |
| ︙ | ︙ |
Modified Cargo.toml
from [ee49091b8b]
to [0cb41533c2].
1 2 | [package] name = "smtp2tg" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "smtp2tg" version = "0.6.5" authors = [ "arcade@b1t.name" ] edition = "2024" license = "0BSD" repository = "http://fs.b1t.name/smtp2tg" [dependencies] async-compat = "0.2.5" |
| ︙ | ︙ |