chore: update rust dependencies #188

Merged
Wuast94 merged 1 commit from updatarr/rust-dependencies-17605dfeaf into main 2026-07-22 16:25:40 +02:00
Owner

Updates rust dependencies.

Automerge: Enabled

Changed files:

  • Cargo.toml:19 1.52.3 -> 1.53.1
  • Cargo.toml:20 0.3.32 -> 0.3.33
  • Cargo.toml:21 0.1.89 -> 0.1.91
  • Cargo.toml:45 1.0.228 -> 1.0.229
  • Cargo.toml:46 1.0.150 -> 1.0.151
  • Cargo.toml:58 1.0.103 -> 1.0.104
  • Cargo.toml:62 1.23.5 -> 1.24.0
  • Cargo.toml:65 1.13.0 -> 1.13.1
  • Cargo.toml:69 0.11.2 -> 0.11.3
Release notes

tokio-1.52.3: tokio: Tokio v1.52.3

Compare source

1.52.3 (May 8th, 2026)

Fixed

  • sync: fix underflow in mpsc channel len() (#8062)
  • sync: notify receivers in mpsc OwnedPermit::release() method (#8075)
  • sync: require that an RwLock has max_readers != 0 (#8076)
  • sync: return Empty from try_recv() when mpsc is closed with outstanding permits (#8074)

tokio-1.52.4: tokio: Tokio v1.52.4

Compare source

1.52.4 (July 16th, 2026)

Fixed

  • runtime: don't skip the driver when before_park schedules work (#8222)

Fixed (unstable)

  • taskdump: remove crate disambiguators from output (#8264)

tokio-1.53.0: tokio: Tokio v1.53.0

Compare source

1.53.0 (July 17th, 2026)

Added

  • fs: implement From<OwnedFd> and From<OwnedHandle> for File (#8266)
  • metrics: add task schedule latency metric (#7986)
  • net: add SocketAddr methods to Unix sockets (#8144)

Changed

  • io: add #[inline] to IO trait impls for in-memory types (#8242)
  • net: implement UCred::pid on FreeBSD (#8086)
  • net: support Nuttx target os (#8259)
  • signal: refactor global variables on Windows (#8231)
  • sync: mpsc::{Receiver,UnboundedReceiver} now drops waker on drop, even if there are still senders (#8095)
  • taskdump: support taskdumps on s390x (#8192)
  • time: add #[track_caller] to timeout_at() (#8077)
  • time: consolidate mutex locks on spurious poll (#8124)
  • time: defer waker clone on spurious poll (#8107)
  • time: move lazy-registration state into Sleep (#8132)
  • tracing: remove unnecessary span clone (#8126)

Fixed

  • io: do not treat zero-length reads as EOF in Chain (#8251)
  • net: use getpeereid for QNX peer credentials (#8270)
  • runtime: avoid illegal state in FastRand (#8078)
  • sync: wake mpsc receiver when a queued reserve[_many] returns permits (#8260)
  • taskdump: skip double wake on Trace::capture/Trace::trace_with (#8043)
  • time: avoid stack overflow in runtime constructor (#8093)
  • time (alt timer): ensure timers stay in the same runtime after .reset() (#8169)

IO uring (unstable)

  • fs: use io-uring for fs::try_exists (#8080)
  • fs: use io-uring for renaming files (#7800)
  • rt: flush io-uring CQE in case of CQE overflow (#8277)

Documented

  • docs: clarify cancel safety wording (#8181)
  • fs: clarify create_dir_all succeeds if path exists (#8149)
  • io: add warning about stdout reordering with multiple handles (#8276)
  • net: document pipe try_read*/try_write* readiness behavior (#8032)
  • runtime: document interaction with fork() (#8202)
  • sync: clarify broadcast lagging semantics (#8239)
  • sync: document memory ordering guarantees for Semaphore (#8119)
  • task: explain why yield_now defers its waker (#8254)
  • time: add panic docs to timeout_at() (#8077)
  • time: fix reversed poll order in timeout doc (#8214)

0.3.33: futures: 0.3.33

Compare source

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)

0.1.90: async-trait

Compare source

  • Update to syn 3

v1.0.229: serde

Compare source

  • Update to syn 3

v1.0.151: serde_json: v1.0.151

Compare source

  • Add RawValue::from_string_unchecked (#1331, thanks @WonderLawrence)

1.0.104: anyhow

Compare source

  • Update syn dev-dependency to version 3

v1.24.0: uuid: v1.24.0

Compare source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0

Updates `rust dependencies`. Automerge: Enabled Changed files: - `Cargo.toml:19` `1.52.3` -> `1.53.1` - `Cargo.toml:20` `0.3.32` -> `0.3.33` - `Cargo.toml:21` `0.1.89` -> `0.1.91` - `Cargo.toml:45` `1.0.228` -> `1.0.229` - `Cargo.toml:46` `1.0.150` -> `1.0.151` - `Cargo.toml:58` `1.0.103` -> `1.0.104` - `Cargo.toml:62` `1.23.5` -> `1.24.0` - `Cargo.toml:65` `1.13.0` -> `1.13.1` - `Cargo.toml:69` `0.11.2` -> `0.11.3` <details> <summary>Release notes</summary> ### [`tokio-1.52.3`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.52.3): tokio: Tokio v1.52.3 [Compare source](https://github.com/tokio-rs/tokio/compare/1.52.3...tokio-1.52.3) # 1.52.3 (May 8th, 2026) ### Fixed * sync: fix underflow in mpsc channel `len()` ([#8062]) * sync: notify receivers in mpsc `OwnedPermit::release()` method ([#8075]) * sync: require that an `RwLock` has `max_readers != 0` ([#8076]) * sync: return `Empty` from `try_recv()` when mpsc is closed with outstanding permits ([#8074]) [#8062]: https://github.com/tokio-rs/tokio/pull/8062 [#8074]: https://github.com/tokio-rs/tokio/pull/8074 [#8075]: https://github.com/tokio-rs/tokio/pull/8075 [#8076]: https://github.com/tokio-rs/tokio/pull/8076 ### [`tokio-1.52.4`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.52.4): tokio: Tokio v1.52.4 [Compare source](https://github.com/tokio-rs/tokio/compare/1.52.3...tokio-1.52.4) # 1.52.4 (July 16th, 2026) ### Fixed - runtime: don't skip the driver when `before_park` schedules work ([#8222]) ### Fixed (unstable) - taskdump: remove crate disambiguators from output ([#8264]) [#8264]: https://github.com/tokio-rs/tokio/pull/8264 [#8222]: https://github.com/tokio-rs/tokio/pull/8222 ### [`tokio-1.53.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.53.0): tokio: Tokio v1.53.0 [Compare source](https://github.com/tokio-rs/tokio/compare/1.52.3...tokio-1.53.0) # 1.53.0 (July 17th, 2026) ### Added - fs: implement `From<OwnedFd>` and `From<OwnedHandle>` for `File` ([#8266]) - metrics: add task schedule latency metric ([#7986]) - net: add `SocketAddr` methods to Unix sockets ([#8144]) ### Changed - io: add `#[inline]` to IO trait impls for in-memory types ([#8242]) - net: implement UCred::pid on FreeBSD ([#8086]) - net: support Nuttx target os ([#8259]) - signal: refactor global variables on Windows ([#8231]) - sync: `mpsc::{Receiver,UnboundedReceiver}` now drops waker on drop, even if there are still senders ([#8095]) - taskdump: support taskdumps on s390x ([#8192]) - time: add `#[track_caller]` to `timeout_at()` ([#8077]) - time: consolidate mutex locks on spurious poll ([#8124]) - time: defer waker clone on spurious poll ([#8107]) - time: move lazy-registration state into `Sleep` ([#8132]) - tracing: remove unnecessary span clone ([#8126]) ### Fixed - io: do not treat zero-length reads as EOF in `Chain` ([#8251]) - net: use getpeereid for QNX peer credentials ([#8270]) - runtime: avoid illegal state in `FastRand` ([#8078]) - sync: wake mpsc receiver when a queued `reserve[_many]` returns permits ([#8260]) - taskdump: skip double wake on `Trace::capture`/`Trace::trace_with` ([#8043]) - time: avoid stack overflow in runtime constructor ([#8093]) - time (alt timer): ensure timers stay in the same runtime after `.reset()` ([#8169]) ### IO uring (unstable) - fs: use io-uring for `fs::try_exists` ([#8080]) - fs: use io-uring for renaming files ([#7800]) - rt: flush io-uring CQE in case of CQE overflow ([#8277]) ### Documented - docs: clarify cancel safety wording ([#8181]) - fs: clarify `create_dir_all` succeeds if path exists ([#8149]) - io: add warning about stdout reordering with multiple handles ([#8276]) - net: document pipe `try_read*`/`try_write*` readiness behavior ([#8032]) - runtime: document interaction with fork() ([#8202]) - sync: clarify broadcast lagging semantics ([#8239]) - sync: document memory ordering guarantees for Semaphore ([#8119]) - task: explain why `yield_now` defers its waker ([#8254]) - time: add panic docs to `timeout_at()` ([#8077]) - time: fix reversed poll order in timeout doc ([#8214]) [#7800]: https://github.com/tokio-rs/tokio/pull/7800 [#7986]: https://github.com/tokio-rs/tokio/pull/7986 [#8032]: https://github.com/tokio-rs/tokio/pull/8032 [#8043]: https://github.com/tokio-rs/tokio/pull/8043 [#8077]: https://github.com/tokio-rs/tokio/pull/8077 [#8078]: https://github.com/tokio-rs/tokio/pull/8078 [#8080]: https://github.com/tokio-rs/tokio/pull/8080 [#8086]: https://github.com/tokio-rs/tokio/pull/8086 [#8093]: https://github.com/tokio-rs/tokio/pull/8093 [#8095]: https://github.com/tokio-rs/tokio/pull/8095 [#8107]: https://github.com/tokio-rs/tokio/pull/8107 [#8119]: https://github.com/tokio-rs/tokio/pull/8119 [#8124]: https://github.com/tokio-rs/tokio/pull/8124 [#8126]: https://github.com/tokio-rs/tokio/pull/8126 [#8132]: https://github.com/tokio-rs/tokio/pull/8132 [#8144]: https://github.com/tokio-rs/tokio/pull/8144 [#8149]: https://github.com/tokio-rs/tokio/pull/8149 [#8169]: https://github.com/tokio-rs/tokio/pull/8169 [#8181]: https://github.com/tokio-rs/tokio/pull/8181 [#8192]: https://github.com/tokio-rs/tokio/pull/8192 [#8193]: https://github.com/tokio-rs/tokio/pull/8193 [#8202]: https://github.com/tokio-rs/tokio/pull/8202 [#8214]: https://github.com/tokio-rs/tokio/pull/8214 [#8231]: https://github.com/tokio-rs/tokio/pull/8231 [#8239]: https://github.com/tokio-rs/tokio/pull/8239 [#8242]: https://github.com/tokio-rs/tokio/pull/8242 [#8251]: https://github.com/tokio-rs/tokio/pull/8251 [#8254]: https://github.com/tokio-rs/tokio/pull/8254 [#8259]: https://github.com/tokio-rs/tokio/pull/8259 [#8260]: https://github.com/tokio-rs/tokio/pull/8260 [#8266]: https://github.com/tokio-rs/tokio/pull/8266 [#8270]: https://github.com/tokio-rs/tokio/pull/8270 [#8276]: https://github.com/tokio-rs/tokio/pull/8276 [#8277]: https://github.com/tokio-rs/tokio/pull/8277 ### [`0.3.33`](https://github.com/rust-lang/futures-rs/releases/tag/0.3.33): futures: 0.3.33 [Compare source](https://github.com/rust-lang/futures-rs/compare/0.3.32...0.3.33) * Fix `ReadLine`'s soundness issue regarding to exception safety. (#3020) * Fix unsound `Send` impl for `IterPinRef` and `Iter`. (#3003) * Fix stacked borrows violation in `compat01as03` implementation. (#3012) * Fix memory leak in `FuturesUnordered::IntoIter`. (#3005) * Add `portable-atomic-alloc` feature and use it in `FuturesUnordered`. (#3007) * Re-export `alloc::task::Wake`. (#3010) * Update `spin` to 0.12. (#3014) ### [`0.1.90`](https://github.com/dtolnay/async-trait/releases/tag/0.1.90): async-trait [Compare source](https://github.com/dtolnay/async-trait/compare/0.1.89...0.1.90) - Update to syn 3 ### [`v1.0.229`](https://github.com/serde-rs/serde/releases/tag/v1.0.229): serde [Compare source](https://github.com/serde-rs/serde/compare/1.0.228...v1.0.229) - Update to syn 3 ### [`v1.0.151`](https://github.com/serde-rs/json/releases/tag/v1.0.151): serde_json: v1.0.151 [Compare source](https://github.com/serde-rs/json/compare/1.0.150...v1.0.151) - Add RawValue::from_string_unchecked (#1331, thanks @WonderLawrence) ### [`1.0.104`](https://github.com/dtolnay/anyhow/releases/tag/1.0.104): anyhow [Compare source](https://github.com/dtolnay/anyhow/compare/1.0.103...1.0.104) - Update `syn` dev-dependency to version 3 ### [`v1.24.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.24.0): uuid: v1.24.0 [Compare source](https://github.com/uuid-rs/uuid/compare/1.23.5...v1.24.0) ## What's Changed * feat(fmt): support encoding into MaybeUninit buffers by @weifanglab in https://github.com/uuid-rs/uuid/pull/892 * Prepare for 1.24.0 release by @KodrAus in https://github.com/uuid-rs/uuid/pull/896 ## New Contributors * @weifanglab made their first contribution in https://github.com/uuid-rs/uuid/pull/892 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.23.5...v1.24.0 </details>
chore: update rust dependencies
All checks were successful
CI / Test (pull_request) Successful in 23m32s
e72a7661a2
Wuast94 scheduled this pull request to auto merge when all checks succeed 2026-07-16 17:14:50 +02:00
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from e72a7661a2
All checks were successful
CI / Test (pull_request) Successful in 23m32s
to 99e6c0cc02
All checks were successful
CI / Test (pull_request) Successful in 14m25s
2026-07-16 19:53:19 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from 99e6c0cc02
All checks were successful
CI / Test (pull_request) Successful in 14m25s
to 716152b159
All checks were successful
CI / Test (pull_request) Successful in 18m48s
2026-07-17 20:28:42 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from 716152b159
All checks were successful
CI / Test (pull_request) Successful in 18m48s
to dd4944e656
All checks were successful
CI / Test (pull_request) Successful in 16m17s
2026-07-18 17:29:51 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from dd4944e656
All checks were successful
CI / Test (pull_request) Successful in 16m17s
to 36f059149d
All checks were successful
CI / Test (pull_request) Successful in 13m35s
2026-07-18 20:44:10 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from 36f059149d
All checks were successful
CI / Test (pull_request) Successful in 13m35s
to 6d8d098fb8
All checks were successful
CI / Test (pull_request) Successful in 1m28s
2026-07-19 18:03:48 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from 6d8d098fb8
All checks were successful
CI / Test (pull_request) Successful in 1m28s
to f7a2c82ef6
All checks were successful
CI / Test (pull_request) Successful in 15m16s
2026-07-19 20:46:27 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from f7a2c82ef6
All checks were successful
CI / Test (pull_request) Successful in 15m16s
to e1ca18e53e
All checks were successful
CI / Test (pull_request) Successful in 30m37s
2026-07-20 21:31:58 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from e1ca18e53e
All checks were successful
CI / Test (pull_request) Successful in 30m37s
to 80c80916e5
All checks were successful
CI / Test (pull_request) Successful in 3m26s
2026-07-21 15:17:21 +02:00
Compare
Wuast94 force-pushed updatarr/rust-dependencies-17605dfeaf from 80c80916e5
All checks were successful
CI / Test (pull_request) Successful in 3m26s
to 42f3546713
All checks were successful
CI / Format (pull_request) Successful in 16m55s
CI / Dependency Audit (pull_request) Successful in 33m26s
CI / Clippy (pull_request) Successful in 36m5s
CI / Logic Tests (pull_request) Successful in 44m38s
CI / Production Build (pull_request) Successful in 38m23s
2026-07-21 17:24:24 +02:00
Compare
Wuast94 deleted branch updatarr/rust-dependencies-17605dfeaf 2026-07-22 16:25:41 +02:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
vault/vrds!188
No description provided.