deps: bump the rust-dependencies group across 1 directory with 35 updates - #1035
dependabot[bot] wants to merge 1 commit into
Conversation
Review · Status🟩 CompletedIronLoop completed the review and posted it to GitHub. ResultRun detailsAutomatic trigger · attempt 1 of 3 · completed in 25m 9s |
There was a problem hiding this comment.
Review · Summary
Dependency updates introduce four production compilation blockers and one pinned-toolchain test blocker.
Findings: 🔴 High 4 · 🟠 Medium 1
Code-specific findings are attached to the diff.
Validation
- ❌ Services library compilation — The updated dependencies fail with the RMCP, AES-GCM, and Ed25519 compatibility errors described above.
- ❌ Pinned-toolchain config test compilation — Rust 1.92.0 rejects serial_test 4.0.1 because it requires Rust 1.93.1.
Review details
- Run:
a96e178f-4471-41de-92a9-f52116af7003 - Attempts: 1
| tokio-stream = "0.1" | ||
| # MCP protocol | ||
| rmcp = { version = "1.5", features = [ | ||
| rmcp = { version = "3.2", features = [ |
There was a problem hiding this comment.
🔴 High · Port the RMCP v3 upgrade before changing the dependency
RMCP 3.2 no longer exports model::Content; this service re-exports and implements helpers for that removed type. The services library therefore fails to compile before MCP connectors can be built. Keep the 1.x dependency or migrate these helpers to the v3 content API as part of this update.
| 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.
🔴 High · Align the Ed25519 RNG integration with v3
ed25519-dalek 3.0 requires its SigningKey::generate RNG to implement the 0.10 rand_core traits, but this crate still passes its direct 0.6 rand_core::OsRng. Attestation key generation fails trait checking, preventing the services library from compiling. Upgrade/migrate the RNG integration along with this major-version bump.
| 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.
🔴 High · Migrate AES-GCM nonce generation for v0.11
AES-GCM 0.11 no longer re-exports aead::OsRng, while both service and database encryption modules import it from that path. This produces unresolved-import errors and prevents compilation of the encryption code. Update the RNG imports/API or retain the 0.10 dependency.
| [[package]] | ||
| name = "deadpool-postgres" | ||
| version = "0.14.1" | ||
| version = "0.14.2" |
There was a problem hiding this comment.
🔴 High · Keep the database pool on one deadpool version
The lockfile moves deadpool-postgres to 0.14.2, which depends on deadpool 0.13.1, while the database crate remains directly tied to 0.12.3. Its pool configuration and status code then mix incompatible QueueMode/Status types, and the old instance no longer has Runtime::Tokio1 enabled. Align the direct dependency and imports with 0.13, or keep deadpool-postgres at 0.14.1.
| [dev-dependencies] | ||
| tempfile = "3.27" | ||
| serial_test = "3.4" | ||
| serial_test = "4.0" |
There was a problem hiding this comment.
🟠 Medium · Do not select serial_test 4.0.1 with Rust 1.92
The repository pins Rust 1.92.0, but the updated lockfile resolves serial_test and serial_test_derive 4.0.1, both of which require Rust 1.93.1. Config test compilation stops before tests run. Pin a compatible release or raise the repository toolchain version.
|
🔍 OpenCodeReview found 1 issue(s) in this PR.
📊 Posting Statistics:
|
…ates Bumps the rust-dependencies group with 35 updates in the / directory: | Package | From | To | | --- | --- | --- | | [serde_json](https://github.com/serde-rs/json) | `1.0.150` | `1.0.151` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.18` | `2.0.20` | | [serde](https://github.com/serde-rs/serde) | `1.0.228` | `1.0.229` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.34` | | [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` | | [tower-http](https://github.com/tower-rs/tower-http) | `0.7.0` | `0.7.1` | | [uuid](https://github.com/uuid-rs/uuid) | `1.23.3` | `1.26.1` | | [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.5` | | [base64](https://github.com/marshallpierce/rust-base64) | `0.22.1` | `0.23.1` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.14.0` | `2.14.2` | | [moka](https://github.com/moka-rs/moka) | `0.12.15` | `0.12.16` | | [bhttp](https://github.com/martinthomson/ohttp) | `0.7.2` | `0.8.0` | | [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.34` | | [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` | | [deadpool-postgres](https://github.com/deadpool-rs/deadpool) | `0.14.1` | `0.14.2` | | [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.92` | | [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.44` | | [aes-gcm](https://github.com/RustCrypto/AEADs) | `0.10.3` | `0.11.1` | | [regex](https://github.com/rust-lang/regex) | `1.12.4` | `1.13.1` | | [futures-core](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.34` | | [http](https://github.com/hyperium/http) | `1.4.1` | `1.5.0` | | [chacha20poly1305](https://github.com/RustCrypto/AEADs) | `0.10.1` | `0.11.0` | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.9` | `1.1.10` | | [getrandom](https://github.com/rust-random/getrandom) | `0.4.1` | `0.4.3` | | [rmcp](https://github.com/modelcontextprotocol/rust-sdk) | `1.8.0` | `3.3.0` | | [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `10.4.0` | `11.0.0` | | [dcap-qvl](https://github.com/Phala-Network/dcap-qvl) | `0.5.2` | `0.5.3` | | [mockall](https://github.com/asomers/mockall) | `0.14.0` | `0.15.0` | 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 `thiserror` from 2.0.18 to 2.0.20 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@2.0.18...2.0.20) 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 `futures` from 0.3.32 to 0.3.34 - [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.34) 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 `tower-http` from 0.7.0 to 0.7.1 - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](tower-rs/tower-http@tower-http-0.7.0...tower-http-0.7.1) Updates `uuid` from 1.23.3 to 1.26.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](uuid-rs/uuid@v1.23.3...v1.26.1) 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.5 - [Release notes](https://github.com/hyperium/http-body/releases) - [Commits](hyperium/http-body@http-body-util-v0.1.3...http-body-util-v0.1.5) Updates `base64` from 0.22.1 to 0.23.1 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](marshallpierce/rust-base64@v0.22.1...v0.23.1) Updates `indexmap` from 2.14.0 to 2.14.2 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](indexmap-rs/indexmap@2.14.0...2.14.2) Updates `moka` from 0.12.15 to 0.12.16 - [Release notes](https://github.com/moka-rs/moka/releases) - [Changelog](https://github.com/moka-rs/moka/blob/main/CHANGELOG.md) - [Commits](moka-rs/moka@v0.12.15...v0.12.16) 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.34 - [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.34) 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 `deadpool-postgres` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/deadpool-rs/deadpool/blob/main/release.toml) - [Commits](deadpool-rs/deadpool@deadpool-postgres-v0.14.1...deadpool-postgres-v0.14.2) 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.92 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.89...0.1.92) 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.44 - [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.44) Updates `aes-gcm` from 0.10.3 to 0.11.1 - [Commits](RustCrypto/AEADs@aes-gcm-v0.10.3...aes-gcm-v0.11.1) 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.34 - [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.34) Updates `http` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](hyperium/http@v1.4.1...v1.5.0) Updates `chacha20poly1305` from 0.10.1 to 0.11.0 - [Commits](RustCrypto/AEADs@chacha20poly1305-v0.10.1...chacha20poly1305-v0.11.0) Updates `flate2` from 1.1.9 to 1.1.10 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Commits](rust-lang/flate2-rs@1.1.9...1.1.10) 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.3.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.3.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 `dcap-qvl` from 0.5.2 to 0.5.3 - [Release notes](https://github.com/Phala-Network/dcap-qvl/releases) - [Commits](Phala-Network/dcap-qvl@v0.5.2...v0.5.3) 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.1 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.92 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.1 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: dcap-qvl dependency-version: 0.5.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: deadpool-postgres dependency-version: 0.14.2 dependency-type: direct:production update-type: version-update:semver-patch 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: flate2 dependency-version: 1.1.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: futures dependency-version: 0.3.34 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: futures-core dependency-version: 0.3.34 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: futures-util dependency-version: 0.3.34 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 dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: http-body-util dependency-version: 0.1.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: indexmap dependency-version: 2.14.2 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: moka dependency-version: 0.12.16 dependency-type: direct:production update-type: version-update:semver-patch 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.2.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.20 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: tower-http dependency-version: 0.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: uuid dependency-version: 1.26.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
85adbb1 to
33e8afe
Compare
Bumps the rust-dependencies group with 35 updates in the / directory:
1.0.1501.0.1512.0.182.0.201.0.2281.0.2290.3.320.3.340.1.180.1.191.52.31.53.11.0.1031.0.1040.7.00.7.11.23.31.26.11.12.01.12.10.1.30.1.50.22.10.23.12.14.02.14.20.12.150.12.160.7.20.8.00.3.320.3.340.7.180.7.1920.1.021.0.00.14.10.14.22.2.03.0.00.10.10.10.20.1.890.1.923.5.04.0.10.23.410.23.440.10.30.11.11.12.41.13.10.3.320.3.341.4.11.5.00.10.10.11.01.1.91.1.100.4.10.4.31.8.03.3.010.4.011.0.00.5.20.5.30.14.00.15.0Updates
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
thiserrorfrom 2.0.18 to 2.0.20Release notes
Sourced from thiserror's releases.
Commits
b1d5db5Release 2.0.20c4c3ebdMerge pull request #454 from dtolnay/clippy2266152Suppress redundant_field_names clippy lint2901cfdRaise minimum tested compiler to rust 1.88aa9d91fUpdate ui tests for version 2.0.19e13a785Release 2.0.190a0e76cUpdate to syn 3ec42ea7Update actions/upload-artifact@v6 -> v74178c4aUpdate actions/checkout@v6 -> v77214e0eIgnore items_after_statements pedantic clippy lint in testUpdates
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
futuresfrom 0.3.32 to 0.3.34Release notes
Sourced from futures's releases.
Changelog
Sourced from futures's changelog.
Commits
705e6b5Release 0.3.34616dac7compat: Inline RawWaker clone function4176369Inline remaining RawWaker clone functionsf17a895Fix cloned FuturesUnordered waker identity51d62admacro: bumpsynto v3 (#3028)9e26177ci: Reduce timeout-minutesb2d0983tsan: Enable Adaptive Delayf733d0eMiri: Ignore compat testse5def2fRename default branch to main89cc254Release 0.3.33Updates
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
tower-httpfrom 0.7.0 to 0.7.1Release notes
Sourced from tower-http's releases.
... (truncated)
Commits
c941451chore(release): prepare 0.7.1 (#729)9697702chore(deps): bump taiki-e/install-action from 2.86.3 to 2.86.8 (#730)e2582e2Allow ignoring multi-range requests (#727)888f7fefeat(services): configure directory redirects (#728)5ad7654chore(deps): bump taiki-e/install-action from 2.85.12 to 2.86.3 (#726)d154adbfix: reject multipart ranges before validation (#661)d9e5c8aci: Update to cargo-check-external-types 0.5.0 (#724)90c072bPropagate ServeDir::try_call I/O errors (#718)860922efix(decompression): don't end the body on an empty data frame (#722)8532252docs(example)/custom future with multiple bodies (#711)Updates
uuidfrom 1.23.3 to 1.26.1Release notes
Sourced from uuid's releases.
... (truncated)
Commits
9f92712Merge pull request #910 from uuid-rs/cargo/v1.26.1d4df8f0prepare for 1.26.1 release5613f23Merge pull request #909 from uuid-rs/fix/ts-conversion-overflowfda00ebdon't panic in overflowing Timestamp to SystemTime conversionc82e88cMerge pull request #907 from lenamonj/v7-counter-placementac065a6Align the counter diagram34ec102Seat the v7 counter below the version nibblecdc96a8Merge pull request #905 from uuid-rs/cargo/v1.26.034e4f49don't test macros under mirid9e7242update nightly used for miriUpdates
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.5Release notes
Sourced from http-body-util's releases.
Commits
07838bdhttp-body-util v0.1.5612118cdocs: migrate from doc_auto_cfg to doc_cfg (#175)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)Updates
base64from 0.22.1 to 0.23.1Changelog
Sourced from base64's changelog.
Commits
069bf70v0.23.16ab1fb0Merge pull request #310 from musicinmybrain/test-on-non-simd-arches7cffce6Fix testing on architectures without unsafe SIMD supporte34f9a0Merge pull request #308 from atouchet/come9240c9Remove outdated comment9e9220av0.23.0870326eMerge pull request #306 from marshallpierce/mp/trailing-bits-docsfbec5f1Document no trailing trailing bits0a23549Merge pull request #305 from marshallpierce/mp/edition-2021f10b7e2Update deps & editionUpdates
indexmapfrom 2.14.0 to 2.14.2Changelog
Sourced from indexmap's changelog.
Commits
41a8708Merge pull request #450 from cuviper/macros0fb7b5cRelease 2.14.255e6b28Improve the empty macro casesc067355Fix item hygiene in user macrosfdf7e17Merge pull request #449 from cuviper/release-2.14.1ada540eRelease 2.14.1af93b43expect clippy::redundant_slicing in testsc95da18fix clippy::derivable_impls2196365fix clippy::useless_vec (and more) in tests1c2be7buse inherent usize::MAXUpdates
mokafrom 0.12.15 to 0.12.16Release notes
Sourced from moka's releases.
Changelog
Sourced from moka's changelog.
Commits
a616ec1Merge pull request #604 from moka-rs/chore/bump-v0.12.163b140a6Bump the version to v0.12.1651b802dMerge pull request #603 from moka-rs/bump-crossbeam-epoch-floor4f90716Raise the minimum crossbeam-epoch version to 0.9.2008d0e04Merge pull request #602 from moka-rs/gh600-tsan-workaround14447a7Restructure the v0.12.16 TSan workaround CHANGELOG entry7b14c37Avoid a TSan false positive by replacing the fence in MiniArc::drop05b37c6Merge pull request #599 from moka-rs/gh590-deterministic-testsfc31858Replace private doc references in gh590 test comments5743592Improve the v0.12.16 CHANGELOG entryUpdates
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.34Release notes
Sourced from futures-util's releases.
Changelog
Sourced from futures-util's changelog.
Commits
705e6b5Release 0.3.34616dac7compat: Inline RawWaker clone function4176369Inline remaining RawWaker clone functionsf17a895Fix cloned FuturesUnordered waker identity