diff --git a/Cargo.lock b/Cargo.lock index a25d8fa..54b017f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -272,9 +272,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.167" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libloading" @@ -903,9 +903,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes", @@ -921,9 +921,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/savefile-abi-min-lib/Cargo.toml b/savefile-abi-min-lib/Cargo.toml index 3d5d1c5..566afc0 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.43", 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..a087591 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.43" diff --git a/savefile-test/Cargo.toml b/savefile-test/Cargo.toml index 84e48c0..8e9784e 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.43", features = ["test-util", "rt-multi-thread", "full"] } async-trait = "0.1" bytes="1.8"