deps: bump the rust-dependencies group across 1 directory with 28 updates - #908
deps: bump the rust-dependencies group across 1 directory with 28 updates#908dependabot[bot] wants to merge 1 commit into
Conversation
| dstack-sdk = "0.1.3" | ||
| dstack-sdk-types = "0.1.2" | ||
| ed25519-dalek = { version = "2.1", features = ["rand_core"] } | ||
| ed25519-dalek = { version = "3.0", features = ["rand_core"] } |
There was a problem hiding this comment.
ed25519-dalek 3.0 bumped its rand_core dependency to version 0.9.x, but this crate still pins rand_core = "0.6". Between rand_core 0.6 and 0.9, APIs such as OsRng usage, RngCore trait, and CryptoRng were reorganized (e.g., OsRng moved into rand in the 0.9 line). Mixing rand_core 0.6 with ed25519-dalek 3.0 will likely cause either compile errors or subtle runtime behavior differences in keys.rs / report.rs / encryption.rs where OsRng and RngCore are used. Verify that ed25519-dalek 3.0 is compatible with the pinned rand_core 0.6, or update the rand_core version requirement accordingly.
Suggestion:
| ed25519-dalek = { version = "3.0", features = ["rand_core"] } | |
| ed25519-dalek = { version = "3.0", features = ["rand_core"] } | |
| # Also update rand_core to match ed25519-dalek 3.0 expectations, e.g.: | |
| # rand_core = { version = "0.9", features = ["getrandom"] } |
| k256 = { version = "0.13", features = ["ecdsa", "arithmetic"] } | ||
| sha3 = "0.12" | ||
| jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] } | ||
| jsonwebtoken = { version = "11.0.0", features = ["rust_crypto"] } |
There was a problem hiding this comment.
jsonwebtoken was bumped from 10.3.0 to 11.0.0, a major version upgrade. The 11.x line changed default Validation behavior (e.g., algorithm validation defaults, leeway, and validate_exp/validate_nbf semantics) and reorganized some error variants. Since auth/mod.rs constructs Validation::new(Algorithm::HS256) and checks claims.claims.exp < Utc::now().timestamp() manually afterward, a behavior change in default exp validation (where 11.x may reject expired tokens before the manual check runs) could alter auth flow. Review the jsonwebtoken 11.x migration guide and update validation usage to avoid duplicate/conflicting expiration handling.
| aws-sdk-s3 = { version = "1.134", default-features = false, features = ["sigv4a", "http-1x", "default-https-client", "rt-tokio"] } | ||
| # Encryption for file storage | ||
| aes-gcm = "0.10" | ||
| aes-gcm = "0.11" |
There was a problem hiding this comment.
aes-gcm 0.11 re-exports rand_core via aead::rand_core still, but the underlying aead crate may have bumped its rand_core version, which could conflict with the pinned rand_core = "0.6" in this manifest (same concern as ed25519-dalek 3.0). Confirm the aead::rand_core::{RngCore, OsRng} imports in encryption.rs still resolve and that there is no version mismatch between the rand_core re-exported by aes-gcm 0.11 and the direct rand_core 0.6 dependency.
| ml-kem = { version = "=0.3.2", features = ["getrandom"] } | ||
| hkdf = "0.13" | ||
| chacha20poly1305 = "0.10" | ||
| chacha20poly1305 = "0.11" |
There was a problem hiding this comment.
Bumping chacha20poly1305 from 0.10 to 0.11 crosses the RustCrypto aead 0.5→0.6 / generic-array 0.14→1.0 migration boundary. The sole consumer (crates/inference_providers/src/attested/chutes/e2ee.rs) calls Key::from_slice / Nonce::from_slice under #[allow(deprecated)], with a comment that explicitly attributes that deprecation nag to "chacha20poly1305 0.10" and the generic-array 0.14→1.x transition. In 0.11 the from_slice constructors may be removed (not merely deprecated) in favor of From/try_from conversions, which would break compilation of aead_seal/aead_open. Please verify the crate compiles and, if needed, migrate those call sites (e.g. *Key::from(key) / Nonce::from(nonce) for fixed-size arrays) and drop the now-stale #[allow(deprecated)] + version-specific comment.
Suggestion:
| chacha20poly1305 = "0.11" | |
| chacha20poly1305 = "0.11" # NOTE: 0.11 finalizes the generic-array 1.x migration; | |
| # verify e2ee.rs from_slice/#[allow(deprecated)] still compiles. |
…ates Bumps the rust-dependencies group with 26 updates in the / directory: | Package | From | To | | --- | --- | --- | | [serde](https://github.com/serde-rs/serde) | `1.0.228` | `1.0.229` | | [serde_json](https://github.com/serde-rs/json) | `1.0.150` | `1.0.151` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.33` | | [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.18` | `0.1.19` | | [tokio](https://github.com/tokio-rs/tokio) | `1.52.3` | `1.53.1` | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.103` | `1.0.104` | | [uuid](https://github.com/uuid-rs/uuid) | `1.23.3` | `1.24.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.18` | `2.0.19` | | [bytes](https://github.com/tokio-rs/bytes) | `1.12.0` | `1.12.1` | | [http-body-util](https://github.com/hyperium/http-body) | `0.1.3` | `0.1.4` | | [base64](https://github.com/marshallpierce/rust-base64) | `0.22.1` | `0.23.0` | | [bhttp](https://github.com/martinthomson/ohttp) | `0.7.2` | `0.8.0` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.18` | `0.7.19` | | [axum-test](https://github.com/JosephLenton/axum-test) | `20.1.0` | `21.0.0` | | [ed25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) | `2.2.0` | `3.0.0` | | [rand](https://github.com/rust-random/rand) | `0.10.1` | `0.10.2` | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.89` | `0.1.91` | | [serial_test](https://github.com/palfrey/serial_test) | `3.5.0` | `4.0.1` | | [rustls](https://github.com/rustls/rustls) | `0.23.41` | `0.23.43` | | [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.1` | | [chacha20poly1305](https://github.com/RustCrypto/AEADs) | `0.10.1` | `0.11.0` | | [getrandom](https://github.com/rust-random/getrandom) | `0.4.1` | `0.4.3` | | [rmcp](https://github.com/modelcontextprotocol/rust-sdk) | `1.8.0` | `3.1.0` | | [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `10.4.0` | `11.0.0` | | [aes-gcm](https://github.com/RustCrypto/AEADs) | `0.10.3` | `0.11.0` | | [mockall](https://github.com/asomers/mockall) | `0.14.0` | `0.15.0` | Updates `serde` from 1.0.228 to 1.0.229 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.228...v1.0.229) Updates `serde_json` from 1.0.150 to 1.0.151 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.150...v1.0.151) Updates `futures` from 0.3.32 to 0.3.33 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.32...0.3.33) Updates `tokio-stream` from 0.1.18 to 0.1.19 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-stream-0.1.18...tokio-stream-0.1.19) Updates `tokio` from 1.52.3 to 1.53.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.52.3...tokio-1.53.1) Updates `anyhow` from 1.0.103 to 1.0.104 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.103...1.0.104) Updates `uuid` from 1.23.3 to 1.24.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](uuid-rs/uuid@v1.23.3...v1.24.0) Updates `thiserror` from 2.0.18 to 2.0.19 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@2.0.18...2.0.19) Updates `bytes` from 1.12.0 to 1.12.1 - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](tokio-rs/bytes@v1.12.0...v1.12.1) Updates `http-body-util` from 0.1.3 to 0.1.4 - [Release notes](https://github.com/hyperium/http-body/releases) - [Commits](hyperium/http-body@http-body-util-v0.1.3...http-body-util-v0.1.4) Updates `base64` from 0.22.1 to 0.23.0 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](marshallpierce/rust-base64@v0.22.1...v0.23.0) Updates `bhttp` from 0.7.2 to 0.8.0 - [Commits](martinthomson/ohttp@v0.7.2...v0.8.0) Updates `futures-util` from 0.3.32 to 0.3.33 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.32...0.3.33) Updates `tokio-util` from 0.7.18 to 0.7.19 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-util-0.7.18...tokio-util-0.7.19) Updates `axum-test` from 20.1.0 to 21.0.0 - [Release notes](https://github.com/JosephLenton/axum-test/releases) - [Commits](https://github.com/JosephLenton/axum-test/commits) Updates `ed25519-dalek` from 2.2.0 to 3.0.0 - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Changelog](https://github.com/dalek-cryptography/curve25519-dalek/blob/3.0.0/CHANGELOG.md) - [Commits](dalek-cryptography/curve25519-dalek@ed25519-2.2.0...3.0.0) Updates `rand` from 0.10.1 to 0.10.2 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@0.10.1...0.10.2) Updates `async-trait` from 0.1.89 to 0.1.91 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.89...0.1.91) Updates `serial_test` from 3.5.0 to 4.0.1 - [Release notes](https://github.com/palfrey/serial_test/releases) - [Commits](palfrey/serial_test@v3.5.0...v4.0.1) Updates `rustls` from 0.23.41 to 0.23.43 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](rustls/rustls@v/0.23.41...v/0.23.43) Updates `regex` from 1.12.4 to 1.13.1 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](rust-lang/regex@1.12.4...1.13.1) Updates `futures-core` from 0.3.32 to 0.3.33 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.32...0.3.33) Updates `chacha20poly1305` from 0.10.1 to 0.11.0 - [Commits](RustCrypto/AEADs@chacha20poly1305-v0.10.1...chacha20poly1305-v0.11.0) Updates `getrandom` from 0.4.1 to 0.4.3 - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](rust-random/getrandom@v0.4.1...v0.4.3) Updates `rmcp` from 1.8.0 to 3.1.0 - [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml) - [Commits](modelcontextprotocol/rust-sdk@rmcp-v1.8.0...rmcp-v3.1.0) Updates `jsonwebtoken` from 10.4.0 to 11.0.0 - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](Keats/jsonwebtoken@v10.4.0...v11.0.0) Updates `aes-gcm` from 0.10.3 to 0.11.0 - [Commits](RustCrypto/AEADs@aes-gcm-v0.10.3...aes-gcm-v0.11.0) Updates `mockall` from 0.14.0 to 0.15.0 - [Changelog](https://github.com/asomers/mockall/blob/master/CHANGELOG.md) - [Commits](asomers/mockall@v0.14.0...v0.15.0) --- updated-dependencies: - dependency-name: aes-gcm dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: anyhow dependency-version: 1.0.104 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: async-trait dependency-version: 0.1.91 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: axum-test dependency-version: 21.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: rust-dependencies - dependency-name: base64 dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: bhttp dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: bytes dependency-version: 1.12.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: chacha20poly1305 dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: ed25519-dalek dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: rust-dependencies - dependency-name: futures dependency-version: 0.3.33 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: futures-core dependency-version: 0.3.33 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: futures-util dependency-version: 0.3.33 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: getrandom dependency-version: 0.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: http-body-util dependency-version: 0.1.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: jsonwebtoken dependency-version: 11.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: rust-dependencies - dependency-name: mockall dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: rand dependency-version: 0.10.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: regex dependency-version: 1.13.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: rmcp dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: rust-dependencies - dependency-name: rustls dependency-version: 0.23.43 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: serde dependency-version: 1.0.229 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: serde_json dependency-version: 1.0.151 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: serial_test dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: rust-dependencies - dependency-name: thiserror dependency-version: 2.0.19 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: tokio dependency-version: 1.53.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: tokio-stream dependency-version: 0.1.19 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: tokio-util dependency-version: 0.7.19 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: uuid dependency-version: 1.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
877015a to
1013039
Compare
Bumps the rust-dependencies group with 26 updates in the / directory:
1.0.2281.0.2291.0.1501.0.1510.3.320.3.330.1.180.1.191.52.31.53.11.0.1031.0.1041.23.31.24.02.0.182.0.191.12.01.12.10.1.30.1.40.22.10.23.00.7.20.8.00.7.180.7.1920.1.021.0.02.2.03.0.00.10.10.10.20.1.890.1.913.5.04.0.10.23.410.23.431.12.41.13.10.10.10.11.00.4.10.4.31.8.03.1.010.4.011.0.00.10.30.11.00.14.00.15.0Updates
serdefrom 1.0.228 to 1.0.229Release notes
Sourced from serde's releases.
Commits
7fc3b4cRelease 1.0.2296d6e9a1Merge pull request #3085 from dtolnay/syn36dec3b7Update to syn 3cfe6692Resolve mut_mut pedantic clippy lint1023d07Update actions/upload-artifact@v6 -> v7dd682c2Update actions/checkout@v6 -> v75f0f18bUpdate ui test suite to nightly-2026-06-0163a1498Regenerate stderr with trybuild normalization fixesfa7da4aFix unused_features warning6b1a178Unpin CI miri toolchainUpdates
serde_jsonfrom 1.0.150 to 1.0.151Release notes
Sourced from serde_json's releases.
Commits
de85007Release 1.0.1513b2b3c5Merge pull request #1331 from WonderLawrence/rawvalue-from-string-unchecked0406d96Debug-assert well-formedness and no-whitespace in from_string_uncheckedcf16f75Add RawValue::from_string_unchecked827a315Update actions/upload-artifact@v6 -> v7cea36a5Update actions/checkout@v6 -> v7Updates
futuresfrom 0.3.32 to 0.3.33Release notes
Sourced from futures's releases.
Changelog
Sourced from futures's changelog.
Commits
89cc254Release 0.3.33cd9f5beci: Update release workflowd79a499Resolve rustdoc::broken_intra_doc_links warning95bbcf8Resolve rustdoc ambiguous link error303c165Resolve rustdoc::redundant_explicit_links warningf34e3f5ci: Cleanup66591a2Enable Miri for more testsab1072fSimplify target_has_atomic cfg in utility cratescf5d23bFix unsound compat01as03 implementation (fixes #2514) (#3012)8ae794fAdd portable-atomic-alloc feature and use it in FuturesUnordered (#3007)Updates
tokio-streamfrom 0.1.18 to 0.1.19Commits
bc0933cchore: prepare tokio-stream v0.1.19 (#8310)e3786d0readme: remove obsolete TokioConf notices (#8311)f2189d3chore: prepare tokio-util v0.7.19 (#8309)52f2745net: re-enabletcp_stream::try_read_buftest for WASI (#8305)ac6869art: remove unstable cfgs leftovers after local runtime stabilization (#8298)75fef53chore: prepare Tokio v1.53.1 (#8303)ae9d011signal: restore MSRV by removing OnceLock::wait from the Windows handler (#8300)eb4988dtime: fix the loom test of the race between cancellation/insertion (#8302)91d3b4ctime: fix alt timer cancellation and insertion race (#8252)a463384runtime: remove dead link definition inRuntime::block_on(#8301)Updates
tokiofrom 1.52.3 to 1.53.1Release notes
Sourced from tokio's releases.
... (truncated)
Commits
75fef53chore: prepare Tokio v1.53.1 (#8303)ae9d011signal: restore MSRV by removing OnceLock::wait from the Windows handler (#8300)eb4988dtime: fix the loom test of the race between cancellation/insertion (#8302)91d3b4ctime: fix alt timer cancellation and insertion race (#8252)a463384runtime: remove dead link definition inRuntime::block_on(#8301)be689a3chore: prepare Tokio v1.53.0 (#8294)50f76c7chore: prepare tokio-macros v2.7.1 (#8295)f61fccaMerge 'tokio-1.52.4' into 'master' (#8290)efdba5fchore: prepare Tokio v1.52.4 (#8289)b0ba02eMerge 'tokio-1.51.4' into 'tokio-1.52.x' (#8288)Updates
anyhowfrom 1.0.103 to 1.0.104Release notes
Sourced from anyhow's releases.
Commits
1dbe186Release 1.0.104f6479f8Update to syn 3Updates
uuidfrom 1.23.3 to 1.24.0Release notes
Sourced from uuid's releases.
Commits
6a8aeabMerge pull request #896 from uuid-rs/cargo/v1.24.0e6db8ecprepare for 1.24.0 release606f236Merge pull request #892 from weifanglab/mainab848dbfeat(fmt): support encoding into MaybeUninit buffers5dc6b3dMerge pull request #895 from uuid-rs/cargo/v1.23.55a7dfe5prepare for 1.23.5 release9b4bfc8Merge pull request #894 from geeknoid/main5acc5a5perf: Optimize UUID hex parsing and formatting6fa1a1efeat(fmt): support encoding into MaybeUninit buffers1e5d867Merge pull request #891 from frostyplanet/docUpdates
thiserrorfrom 2.0.18 to 2.0.19Release notes
Sourced from thiserror's releases.
Commits
e13a785Release 2.0.190a0e76cUpdate to syn 3ec42ea7Update actions/upload-artifact@v6 -> v74178c4aUpdate actions/checkout@v6 -> v77214e0eIgnore items_after_statements pedantic clippy lint in testfebcc03Merge pull request #451 from vip892766gma/maint/20260521171412c50e387chore: improve thiserror maintenance pathd4a2507Raise minimum tested compiler to rust 1.8599e8a6cUnpin CI miri toolchain9ac165cPin CI miri to nightly-2026-02-11Updates
bytesfrom 1.12.0 to 1.12.1Release notes
Sourced from bytes's releases.
Changelog
Sourced from bytes's changelog.
Commits
76c0fbbRelease bytes v1.12.1 (#838)924c82bHandle unwinding from Box::new (#837)Updates
http-body-utilfrom 0.1.3 to 0.1.4Release notes
Sourced from http-body-util's releases.
Commits
7685047http-body-util v0.1.43396328http-body v1.1.02fb78dechore: bump license year (#170)b16554bchore(ci): bump checkout to v7c0c53cachore(ci): use msrv aware update for msrv job5ed15d2tests: fix clippy::double_parensc8cb37fDeriveCopytrait toSizeHintstruct (#164)915d6d5feat(util): addInspectErr,InspectFramecombinators (#161)0fc0a94docs: fix broken intradoc links (#162)5a849d4chore: add FUNDING.ymlUpdates
base64from 0.22.1 to 0.23.0Changelog
Sourced from base64's changelog.
Commits
9e9220av0.23.0870326eMerge pull request #306 from marshallpierce/mp/trailing-bits-docsfbec5f1Document no trailing trailing bits0a23549Merge pull request #305 from marshallpierce/mp/edition-2021f10b7e2Update deps & edition9d21a59Merge pull request #304 from marshallpierce/mp/custom-padding-rebasef70bad2Support custom padding symbols684d79cMerge pull request #301 from marshallpierce/mp/simd-gardening5bf66f2Merge pull request #284 from AbeZbm/add-testsd3831cfFollowups to SIMD workUpdates
bhttpfrom 0.7.2 to 0.8.0Commits
84f59d0Update version to 0.8.0e18790cMerge pull request #90 from martinthomson/hpke-update7ad4f7bFix MSRV in CIe9c0c0cAdd X-Wing support to that batch of changesa767165Take some of rozbb's updatesab10b68Reformat debug checkb97e089Minor fixes9a988f3Merge pull request #95 from m-kus/feat/p-256-kem4eb64ffAdd support for DHKEM(P-256, HKDF-SHA256)600931bAutomatically work out what the MSRV is for pre-commitUpdates
futures-utilfrom 0.3.32 to 0.3.33Release notes
Sourced from futures-util's releases.
Changelog
Sourced from futures-util's changelog.
Commits
89cc254Release 0.3.33cd9f5beci: Update release workflowd79a499Resolve rustdoc::broken_intra_doc_links warning95bbcf8Resolve rustdoc ambiguous link error303c165Resolve rustdoc::redundant_explicit_links warningf34e3f5ci: Cleanup66591a2Enable Miri for more testsab1072fSimplify target_has_atomic cfg in utility cratescf5d23bFix unsound compat01as03 implementation (fixes #2514) (#3012)8ae794fAdd portable-atomic-alloc feature and use it in FuturesUnordered (#3007)Updates
tokio-utilfrom 0.7.18 to 0.7.19Commits
f2189d3chore: prepare tokio-util v0.7.19 (#8309)52f2745net: re-enabletcp_stream::try_read_buftest for WASI (#8305)ac6869art: remove unstable cfgs leftovers after local runtime stabilization (#8298)75fef53chore: prepare Tokio v1.53.1 (#8303)ae9d011signal: restore MSRV by removing OnceLock::wait from the Windows handler (#8300)eb4988dtime: fix the loom test of the race between cancellation/insertion (#8302)91d3b4ctime: fix alt timer cancellation and insertion race (#8252)a463384runtime: remove dead link definition inRuntime::block_on(#8301)be689a3chore: prepare Tokio v1.53.0 (#8294)50f76c7chore: prepare tokio-macros v2.7.1 (#8295)Updates
axum-testfrom 20.1.0 to 21.0.0Commits
Updates
ed25519-dalekfrom 2.2.0 to 3.0.0Changelog
Sourced from ed25519-dalek's changelog.
... (truncated)
Commits
6d96eb7Bump version to 3.0.0.c68b30fMerge pull request #330 from isislovecruft/fix/move-coc2ee6193Merge pull request #327 from huitseeker/digests-0.991a0faeMove CoC section from CONTRIBUTING.md to new file.5038fcfMerge pull request #308 from isislovecruft/fix/pippenger-typo6afd8ffUpdate sha2, digest to 0.93cc13a7Merge branch 'master' into developc4824e1Merge branch 'release/2.1.0'3fc47efBump version to 2.1.0f04b830Merge branch 'master' into developUpdates
randfrom 0.10.1 to 0.10.2Changelog
Sourced from rand's changelog.
Commits
1540ea3Prepare rand 0.10.2 (#1800)a29964aBump chacha20 from 0.10.0 to 0.10.1 in the all-deps group (#1801)ced9491Tweak docs for RngExt::random_range and SampleRange (#1798)db14664Check UniformChar validity on deser (#1790)bea8620Bump the all-deps group with 2 updates (#1796)4f44932Bump actions/cache from 5 to 6 (#1795)b999a13Bump actions/checkout from 6 to 7 (#1794)aeab810Avoid unsafe where safety depends on non-local values (#1791)1896d7cAdd typos CI job (#1789)43eddeeBump the all-deps group with 2 updates (#1788)Updates
async-traitfrom 0.1.89 to 0.1.91Release notes
Sourced from async-trait's releases.
Commits
d049ee0Release 0.1.917a0961fMerge pull request #301 from dtolnay/mutability740f86fIgnore mut_mut pedantic clippy lint in test4699cd3Fix mutability for by-reference receivers6dd3573Add regression test for issue 3002371797Release 0.1.90d03f075Merge pull request #299 from dtolnay/syn36cf42c1Update to syn 3b9daabaIgnore match_same_arms pedantic clippy lintaa706d1Update actions/upload-artifact@v6 -> v7Updates
serial_testfrom 3.5.0 to 4.0.1Release notes
Sourced from serial_test's releases.
Commits
383c8944.0.14298adfMSRV is actually 1.93.1f25d56f4.0.07984bdcMerge pull request #160 from palfrey/pre-release-fixesec74212Don't need to split build-all-features now03cd910Upgrade MSRV to 1.93.17cf8563Add a "finish" CI job that depends on everythingd7c4137Upgrade actix-macros to reduce syn 1.x needsae268b0Merge pull request #159 from AudaciousAxiom/refactor/syn-v398b2c36refactor(derive): bumpsynto v3Updates
rustlsfrom 0.23.41 to 0.23.43Commits
fcf61cdPrepare 0.23.43f0dad4cCheck server's proposed suite against actual offerb480cc6Test for server choosing a non-QUIC TLS1.3 suite883a44dConsiderProtocolinServerConfig::supports_versionc2f1fd9Check suitability of server version in QUIC clientd98e1b9Add test for serverTls13RequiredForQuice63d9bfBound ticket age calculation79cd462Defensiveness improvement for binder suffix arithmetic4a9f025use checked_sub for the mac tag offset in Rfc5077Ticketer::decrypt3131e5cAccept that libcrux deps are vulnerableUpdates
regexfrom 1.12.4 to 1.13.1Changelog
Sourced from regex's changelog.