upgrading tokio to 1.52.1#8278
Conversation
Summary: Upgrading `tokio` from `1.50.0` to `1.52.1`. - All downstream consumers checked with arc rust-check — 0 errors. Reviewed By: dtolnay Differential Revision: D101580193
|
@zbowling has exported this pull request. If you are a Meta employee, you can view the originating Diff in D101580193. |
There was a problem hiding this comment.
Pull request overview
Upgrades the Tokio async runtime dependency used by the below crate to a newer patch/minor release as part of keeping the workspace dependencies current.
Changes:
- Bump
tokiodependency inbelowfrom1.50.0to1.52.1.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| tar = "0.4.45" | ||
| tempfile = "3.27.0" | ||
| tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] } | ||
| tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] } |
There was a problem hiding this comment.
This bumps the tokio version requirement, but Cargo.lock in the repo currently resolves tokio to 1.47.1. If this repo expects reproducible/locked builds (e.g. cargo build --locked), the PR should also update Cargo.lock so the resolved version matches the new minimum (1.52.1+) and the stated upgrade is reflected in the lockfile.
Summary:
Upgrading
tokiofrom1.50.0to1.52.1.Reviewed By: dtolnay
Differential Revision: D101580193