From 78b42e2c0c30759e57f058a9a2346e817f1d053f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 03:25:22 +0000 Subject: [PATCH] Bump tokio from 1.41.1 to 1.42.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.41.1 to 1.42.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.42.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- savefile-abi-min-lib/Cargo.toml | 2 +- savefile-abi-min/Cargo.toml | 2 +- savefile-test/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a25d8fa..42439c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -903,9 +903,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", diff --git a/savefile-abi-min-lib/Cargo.toml b/savefile-abi-min-lib/Cargo.toml index 3d5d1c5..ca0c367 100644 --- a/savefile-abi-min-lib/Cargo.toml +++ b/savefile-abi-min-lib/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" savefile = { path = "../savefile", features = ["derive"], default-features = false } savefile-abi = { path = "../savefile-abi" } savefile-derive = {path = "../savefile-derive"} -tokio = { version = "1.40", features=["macros", "rt-multi-thread", "time"] } +tokio = { version = "1.42", features=["macros", "rt-multi-thread", "time"] } tokio-util="0.7" async-trait = "=0.1.83" \ No newline at end of file diff --git a/savefile-abi-min/Cargo.toml b/savefile-abi-min/Cargo.toml index 3cf9e87..339473b 100644 --- a/savefile-abi-min/Cargo.toml +++ b/savefile-abi-min/Cargo.toml @@ -12,4 +12,4 @@ savefile-abi = { path = "../savefile-abi" } byteorder = "1.4" savefile-derive = {path = "../savefile-derive"} savefile-abi-min-lib = { path = "../savefile-abi-min-lib" } -tokio="1.40" +tokio="1.42" diff --git a/savefile-test/Cargo.toml b/savefile-test/Cargo.toml index 84e48c0..80194e7 100644 --- a/savefile-test/Cargo.toml +++ b/savefile-test/Cargo.toml @@ -32,7 +32,7 @@ quickcheck="1.0" quickcheck_macros ="1.0" insta = { version = "1.41.1", features = ["yaml"] } nalgebra="0.33" -tokio= { version = "1.40", features = ["test-util", "rt-multi-thread", "full"] } +tokio= { version = "1.42", features = ["test-util", "rt-multi-thread", "full"] } async-trait = "0.1" bytes="1.8"