From a9efcd2c165f7f6ba9d5a0faa57276f2b0d0df3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 08:21:02 +0000 Subject: [PATCH] chore(deps): bump the tokio group across 1 directory with 3 updates Bumps the tokio group with 3 updates in the / directory: [tokio](https://github.com/tokio-rs/tokio), [tokio-test](https://github.com/tokio-rs/tokio) and [tokio-util](https://github.com/tokio-rs/tokio). Updates `tokio` from 1.49.0 to 1.50.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.49.0...tokio-1.50.0) Updates `tokio-test` from 0.4.4 to 0.4.5 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-test-0.4.4...tokio-test-0.4.5) Updates `tokio-util` from 0.7.17 to 0.7.18 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.7.17...tokio-util-0.7.18) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.50.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: tokio - dependency-name: tokio-test dependency-version: 0.4.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tokio - dependency-name: tokio-util dependency-version: 0.7.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tokio ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++-------- Cargo.toml | 2 +- prax-migrate/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb6debe..dacecc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6348,9 +6348,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.49.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes", "libc", @@ -6455,12 +6455,10 @@ dependencies = [ [[package]] name = "tokio-test" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7" +checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "async-stream", - "bytes", "futures-core", "tokio", "tokio-stream", @@ -6468,9 +6466,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.17" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 0b38f25..5cf2eca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ syn = { version = "2.0", features = ["full", "extra-traits", "parsing"] } convert_case = "0.6" # Async runtime -tokio = { version = "1.40", features = ["full"] } +tokio = { version = "1.50", features = ["full"] } futures = "0.3" # Serialization diff --git a/prax-migrate/Cargo.toml b/prax-migrate/Cargo.toml index ee3bee2..c88328f 100644 --- a/prax-migrate/Cargo.toml +++ b/prax-migrate/Cargo.toml @@ -13,7 +13,7 @@ categories = ["database", "asynchronous"] [dependencies] prax-schema = { path = "../prax-schema", version = "0.6.0" } -tokio = { version = "1.49", features = ["full", "fs"] } +tokio = { version = "1.50", features = ["full", "fs"] } thiserror = "2.0" async-trait = "0.1" serde = { version = "1.0", features = ["derive"] }