From c37cdfdd592fdd5a018850461502f71e81f5ec13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 07:46:52 +0000 Subject: [PATCH] Bump tokio from 1.39.3 to 1.40.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.3 to 1.40.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/client/Cargo.toml | 2 +- crates/kvdb/Cargo.toml | 2 +- crates/protocol/Cargo.toml | 2 +- crates/test-cli/Cargo.toml | 2 +- crates/testing-utils/Cargo.toml | 2 +- crates/threshold-signature-server/Cargo.toml | 2 +- scripts/create-test-keyshares/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f62564e91..d9db6a482 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14288,9 +14288,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.3" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 190468c64..e985bfcba 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -33,7 +33,7 @@ anyhow ="1.0.87" # Only for the browser js-sys={ version="0.3.70", optional=true } -tokio ={ version="1.39", features=["time"] } +tokio ={ version="1.40", features=["time"] } [dev-dependencies] serial_test ="3.1.1" diff --git a/crates/kvdb/Cargo.toml b/crates/kvdb/Cargo.toml index a12583678..d30a63129 100644 --- a/crates/kvdb/Cargo.toml +++ b/crates/kvdb/Cargo.toml @@ -26,7 +26,7 @@ chacha20poly1305={ version="0.9", features=["alloc"], default-features=false } synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" } # Async -tokio ={ version="1.39", features=["macros", "sync", "fs", "rt-multi-thread", "io-util"] } +tokio ={ version="1.40", features=["macros", "sync", "fs", "rt-multi-thread", "io-util"] } tracing={ version="0.1", default-features=false } # Misc diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index 9941d6973..313e273ec 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -15,7 +15,7 @@ synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d serde ={ version="1.0", features=["derive"], default-features=false } subxt ={ version="0.35.3", default-features=false } sp-core ={ version="31.0.0", default-features=false, features=["full_crypto", "serde"] } -tokio ={ version="1.39", features=["sync", "rt", "macros"] } +tokio ={ version="1.40", features=["sync", "rt", "macros"] } x25519-dalek ={ version="2.0.1", features=["static_secrets"] } futures ="0.3" hex ="0.4.3" diff --git a/crates/test-cli/Cargo.toml b/crates/test-cli/Cargo.toml index f9a7dde3a..b027455c2 100644 --- a/crates/test-cli/Cargo.toml +++ b/crates/test-cli/Cargo.toml @@ -15,7 +15,7 @@ colored ="2.0.4" subxt ="0.35.3" sp-core ="31.0.0" anyhow ="1.0.87" -tokio ={ version="1.39", features=["macros", "rt-multi-thread", "io-util", "process"] } +tokio ={ version="1.40", features=["macros", "rt-multi-thread", "io-util", "process"] } hex ="0.4.3" bincode ="1.3.3" x25519-dalek ="2.0.1" diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index 778a0b3c1..93217efcd 100644 --- a/crates/testing-utils/Cargo.toml +++ b/crates/testing-utils/Cargo.toml @@ -16,7 +16,7 @@ sp-core ={ version="31.0.0", default-features=false } parity-scale-codec="3.6.12" lazy_static ="1.5.0" hex-literal ="0.4.1" -tokio ={ version="1.39", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } +tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } axum ={ version="0.7.5" } entropy-shared ={ version="0.2.0", path="../shared" } entropy-kvdb ={ version="0.2.0", path="../kvdb", default-features=false } diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index acc557344..01f9fc5c8 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -27,7 +27,7 @@ backoff ={ version="0.4.0", features=["tokio"] } # Async futures="0.3" -tokio ={ version="1.39", features=["macros", "fs", "rt-multi-thread", "io-util", "process", "sync"] } +tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process", "sync"] } # HTTP reqwest={ version="0.12.7", features=["json", "stream"] } diff --git a/scripts/create-test-keyshares/Cargo.toml b/scripts/create-test-keyshares/Cargo.toml index d47b94aa6..63180cc38 100644 --- a/scripts/create-test-keyshares/Cargo.toml +++ b/scripts/create-test-keyshares/Cargo.toml @@ -10,7 +10,7 @@ edition ='2021' [dependencies] entropy-testing-utils={ version="0.2.0-rc.1", path="../../crates/testing-utils" } -tokio ={ version="1.39", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } +tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } entropy-shared ={ version="0.2.0-rc.1", path="../../crates/shared" } entropy-kvdb ={ version="0.2.0-rc.1", path="../../crates/kvdb", default-features=false }