diff --git a/Cargo.lock b/Cargo.lock index a8b97ff26f5f..5c264794dd28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7191,9 +7191,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.3.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda" +checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975" dependencies = [ "autocfg 1.0.1", "bytes", diff --git a/client/faucet/Cargo.toml b/client/faucet/Cargo.toml index 0722c3236a08..4ec9c3e859c0 100644 --- a/client/faucet/Cargo.toml +++ b/client/faucet/Cargo.toml @@ -17,7 +17,7 @@ reqwest = { version = "0.11.2", features = ["blocking"], default-features = fals serde = "1.0.124" serde_derive = "1.0.117" structopt = "0.3.21" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } warp = "0.3.0" generate-key = { path = "../../config/generate-key" } diff --git a/client/json-rpc/Cargo.toml b/client/json-rpc/Cargo.toml index 5f417fbbaf78..b047a186c309 100644 --- a/client/json-rpc/Cargo.toml +++ b/client/json-rpc/Cargo.toml @@ -18,7 +18,7 @@ rand = "0.8.3" reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false } serde = { version = "1.0.124", default-features = false } serde_json = "1.0.64" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diem-crypto = { path = "../../crypto/crypto" } bcs = "0.1.2" diff --git a/common/bounded-executor/Cargo.toml b/common/bounded-executor/Cargo.toml index d7505c8eb25e..6045d7320519 100644 --- a/common/bounded-executor/Cargo.toml +++ b/common/bounded-executor/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] futures = "0.3.12" diem-workspace-hack = { path = "../workspace-hack" } -tokio = { version = "1.3.0", features = ["sync"] } +tokio = { version = "1.6.1", features = ["sync"] } [dev-dependencies] -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diff --git a/common/channel/Cargo.toml b/common/channel/Cargo.toml index 4641e5517bdc..9fb3f1bb0adf 100644 --- a/common/channel/Cargo.toml +++ b/common/channel/Cargo.toml @@ -18,4 +18,4 @@ diem-workspace-hack = { path = "../workspace-hack" } [dev-dependencies] diem-types = { path = "../../types" } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diff --git a/common/debug-interface/Cargo.toml b/common/debug-interface/Cargo.toml index 47a9d07d0f61..b7cfe423a130 100644 --- a/common/debug-interface/Cargo.toml +++ b/common/debug-interface/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] anyhow = "1.0.38" bytes = "1.0.1" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false } warp = "0.3.0" diff --git a/common/metrics/Cargo.toml b/common/metrics/Cargo.toml index d11b5e260d4b..9911b865408c 100644 --- a/common/metrics/Cargo.toml +++ b/common/metrics/Cargo.toml @@ -16,7 +16,7 @@ hyper = { version = "0.14.4", features = ["full"] } once_cell = "1.7.2" prometheus = { version = "0.12.0", default-features = false } serde_json = "1.0.64" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diem-logger = { path = "../logger" } diem-metrics-core = { path = "../metrics-core" } diff --git a/common/rate-limiter/Cargo.toml b/common/rate-limiter/Cargo.toml index ff3ef9a03ea7..b558f93b4089 100644 --- a/common/rate-limiter/Cargo.toml +++ b/common/rate-limiter/Cargo.toml @@ -16,5 +16,5 @@ diem-logger = { path = "../logger" } diem-metrics = { path = "../metrics" } futures = "0.3.12" pin-project = "1.0.5" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-util = { version = "0.6.4", features = ["compat"] } diff --git a/common/retrier/Cargo.toml b/common/retrier/Cargo.toml index 9d70bbdb9353..9fb0df82f348 100644 --- a/common/retrier/Cargo.toml +++ b/common/retrier/Cargo.toml @@ -11,5 +11,5 @@ edition = "2018" [dependencies] diem-workspace-hack = { path = "../workspace-hack" } -tokio = { version = "1.3.0", features = ["time"] } +tokio = { version = "1.6.1", features = ["time"] } diem-logger = { path = "../logger"} diff --git a/common/time-service/Cargo.toml b/common/time-service/Cargo.toml index c97bac60f550..82ad6f7cf835 100644 --- a/common/time-service/Cargo.toml +++ b/common/time-service/Cargo.toml @@ -14,7 +14,7 @@ enum_dispatch = "0.3.5" futures = { version = "0.3.12", optional = true } pin-project = { version = "1.0.5", optional = true } thiserror = "1.0.24" -tokio = { version = "1.3.0", features = ["macros", "rt-multi-thread", "time"], optional = true } +tokio = { version = "1.6.1", features = ["macros", "rt-multi-thread", "time"], optional = true } diem-infallible = { path = "../infallible" } diem-workspace-hack = { path = "../workspace-hack" } @@ -22,7 +22,7 @@ diem-workspace-hack = { path = "../workspace-hack" } [dev-dependencies] futures = "0.3.12" pin-project = "1.0.5" -tokio = { version = "1.3.0", features = ["macros", "rt-multi-thread", "time"] } +tokio = { version = "1.6.1", features = ["macros", "rt-multi-thread", "time"] } tokio-test = "0.4.0" [features] diff --git a/common/trace/Cargo.toml b/common/trace/Cargo.toml index a250510dac9d..6699a3dd7d4b 100644 --- a/common/trace/Cargo.toml +++ b/common/trace/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] chrono = "0.4.19" structopt = "0.3.21" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } serde_json = "1.0.64" serde = "1.0.124" anyhow = "1.0.38" diff --git a/common/workspace-hack/Cargo.toml b/common/workspace-hack/Cargo.toml index 04424531ee81..f942ab3cafe6 100644 --- a/common/workspace-hack/Cargo.toml +++ b/common/workspace-hack/Cargo.toml @@ -48,7 +48,7 @@ serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", " serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] } standback = { version = "0.2.15", default-features = false, features = ["std"] } subtle = { version = "2.4.0", default-features = false, features = ["std"] } -tokio = { version = "1.3.0", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } +tokio = { version = "1.6.1", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } tokio-util = { version = "0.6.4", features = ["codec", "compat", "default", "futures-io", "io"] } toml = { version = "0.5.8", features = ["default"] } tracing = { version = "0.1.25", features = ["attributes", "default", "log", "std", "tracing-attributes"] } @@ -98,7 +98,7 @@ standback = { version = "0.2.15", default-features = false, features = ["std"] } subtle = { version = "2.4.0", default-features = false, features = ["std"] } syn-3575ec1268b04181 = { package = "syn", version = "0.15.44", features = ["clone-impls", "default", "derive", "extra-traits", "full", "parsing", "printing", "proc-macro", "quote", "visit"] } syn-dff4ba8e3ae991db = { package = "syn", version = "1.0.62", features = ["clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"] } -tokio = { version = "1.3.0", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } +tokio = { version = "1.6.1", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } tokio-util = { version = "0.6.4", features = ["codec", "compat", "default", "futures-io", "io"] } toml = { version = "0.5.8", features = ["default"] } tracing = { version = "0.1.25", features = ["attributes", "default", "log", "std", "tracing-attributes"] } @@ -143,7 +143,7 @@ serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", " serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] } standback = { version = "0.2.15", default-features = false, features = ["std"] } subtle = { version = "2.4.0", default-features = false, features = ["std"] } -tokio = { version = "1.3.0", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } +tokio = { version = "1.6.1", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } tokio-util = { version = "0.6.4", features = ["codec", "compat", "default", "futures-io", "io"] } toml = { version = "0.5.8", features = ["default"] } tracing = { version = "0.1.25", features = ["attributes", "default", "log", "std", "tracing-attributes"] } @@ -193,7 +193,7 @@ standback = { version = "0.2.15", default-features = false, features = ["std"] } subtle = { version = "2.4.0", default-features = false, features = ["std"] } syn-3575ec1268b04181 = { package = "syn", version = "0.15.44", features = ["clone-impls", "default", "derive", "extra-traits", "full", "parsing", "printing", "proc-macro", "quote", "visit"] } syn-dff4ba8e3ae991db = { package = "syn", version = "1.0.62", features = ["clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"] } -tokio = { version = "1.3.0", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } +tokio = { version = "1.6.1", features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "sync", "test-util", "time", "tokio-macros", "winapi"] } tokio-util = { version = "0.6.4", features = ["codec", "compat", "default", "futures-io", "io"] } toml = { version = "0.5.8", features = ["default"] } tracing = { version = "0.1.25", features = ["attributes", "default", "log", "std", "tracing-attributes"] } diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 039377aed71a..e174346c03f0 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -27,7 +27,7 @@ serde = { version = "1.0.124", default-features = false } serde_json = "1.0.64" termion = { version = "1.5.6", default-features = false } thiserror = "1.0.24" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } channel = { path = "../common/channel" } consensus-types = { path = "consensus-types", default-features = false } diff --git a/diem-node/Cargo.toml b/diem-node/Cargo.toml index 01e57bc79cc5..26d0ce3b6692 100644 --- a/diem-node/Cargo.toml +++ b/diem-node/Cargo.toml @@ -14,7 +14,7 @@ fail = "0.4.0" futures = "0.3.12" jemallocator = { version = "0.3.2", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] } structopt = "0.3.21" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-stream = "0.1.4" backup-service = { path = "../storage/backup/backup-service" } diff --git a/json-rpc/Cargo.toml b/json-rpc/Cargo.toml index 3fb732bb76de..4ddb2a59250f 100644 --- a/json-rpc/Cargo.toml +++ b/json-rpc/Cargo.toml @@ -19,7 +19,7 @@ once_cell = "1.7.2" rand = "0.8.3" serde_json = "1.0.64" serde = { version = "1.0.124", features = ["derive"], default-features = false } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } warp = { version = "0.3.0", features = ["tls"] } reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false, optional = true } proptest = { version = "1.0.0", optional = true } diff --git a/language/diem-tools/diem-events-fetcher/Cargo.toml b/language/diem-tools/diem-events-fetcher/Cargo.toml index 4b52f8d5082d..56f94217dc44 100644 --- a/language/diem-tools/diem-events-fetcher/Cargo.toml +++ b/language/diem-tools/diem-events-fetcher/Cargo.toml @@ -17,7 +17,7 @@ hex = "0.4.3" reqwest = { version = "0.11.2", features = ["blocking", "json"] } structopt = "0.3.21" futures = "0.3.12" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diem-workspace-hack = { path = "../../../common/workspace-hack" } diem-client = { path = "../../../sdk/client" } diff --git a/language/move-prover/Cargo.toml b/language/move-prover/Cargo.toml index 87bf3f156739..d80f87be9163 100644 --- a/language/move-prover/Cargo.toml +++ b/language/move-prover/Cargo.toml @@ -41,7 +41,7 @@ serde = { version = "1.0.124", features = ["derive"] } serde_json = "1.0.64" simplelog = "0.9.0" once_cell = "1.7.2" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } toml = "0.5.8" [dev-dependencies] diff --git a/language/move-prover/boogie-backend/Cargo.toml b/language/move-prover/boogie-backend/Cargo.toml index 863a7864245a..c954839b3d17 100644 --- a/language/move-prover/boogie-backend/Cargo.toml +++ b/language/move-prover/boogie-backend/Cargo.toml @@ -27,7 +27,7 @@ regex = "1.4.3" rand = "0.8.3" futures = "0.3.12" handlebars = "3.5.3" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } codespan = "0.8.0" codespan-reporting = "0.8.0" diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index 045753e23b80..1b752c8c7d9f 100644 --- a/mempool/Cargo.toml +++ b/mempool/Cargo.toml @@ -18,7 +18,7 @@ once_cell = "1.7.2" proptest = { version = "1.0.0", optional = true } rayon = "1.4.1" serde = { version = "1.0.124", default-features = false } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-stream = "0.1.4" bounded-executor = { path = "../common/bounded-executor" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 71075b7072cf..38b9c2b5f6a5 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -24,7 +24,7 @@ rand_core = { version = "0.6.2", optional = true } serde = { version = "1.0.124", default-features = false } serde_bytes = "0.11.5" thiserror = "1.0.24" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-retry = "0.3.0" tokio-stream = "0.1.4" tokio-util = { version = "0.6.4", features = ["compat", "codec"] } diff --git a/network/builder/Cargo.toml b/network/builder/Cargo.toml index b22615f70f28..c8ee9acb5c54 100644 --- a/network/builder/Cargo.toml +++ b/network/builder/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" futures = "0.3.12" rand = "0.8.3" serde = { version = "1.0.124", default-features = false } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } channel = { path = "../../common/channel" } bcs = "0.1.2" diff --git a/network/netcore/Cargo.toml b/network/netcore/Cargo.toml index 20d993e5ee96..29ad77dbe007 100644 --- a/network/netcore/Cargo.toml +++ b/network/netcore/Cargo.toml @@ -14,7 +14,7 @@ bytes = "1.0.1" futures = "0.3.12" pin-project = "1.0.5" serde = { version = "1.0.124", default-features = false } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-util = { version = "0.6.4", features = ["compat"] } url = { version = "2.2.1" } diff --git a/network/simple-onchain-discovery/Cargo.toml b/network/simple-onchain-discovery/Cargo.toml index b6e8442a4d41..1e5c7c32f2d5 100644 --- a/network/simple-onchain-discovery/Cargo.toml +++ b/network/simple-onchain-discovery/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" anyhow = "1.0.38" futures = "0.3.12" once_cell = "1.7.2" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } channel = {path = "../../common/channel"} bcs = "0.1.2" diff --git a/network/socket-bench-server/Cargo.toml b/network/socket-bench-server/Cargo.toml index 4d5c806bf741..8959c33bf90a 100644 --- a/network/socket-bench-server/Cargo.toml +++ b/network/socket-bench-server/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] futures = "0.3.12" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-util = { version = "0.6.4", features = ["compat", "codec"] } diem-crypto = { path = "../../crypto/crypto" } diff --git a/sdk/client/Cargo.toml b/sdk/client/Cargo.toml index 9095c339227e..084a27f53024 100644 --- a/sdk/client/Cargo.toml +++ b/sdk/client/Cargo.toml @@ -27,7 +27,7 @@ diem-types = { path = "../../types", version = "0.0.1" } # Optional Dependencies reqwest = { version = "0.11.2", features = ["json"], optional = true } -tokio = { version = "1.3.0", features = ["time"], default_features = false, optional = true } +tokio = { version = "1.6.1", features = ["time"], default_features = false, optional = true } ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false, optional = true } ipnet = { version = "2.3", optional = true } diff --git a/secure/key-manager/Cargo.toml b/secure/key-manager/Cargo.toml index b0439ccb4745..d723e98bf8f0 100644 --- a/secure/key-manager/Cargo.toml +++ b/secure/key-manager/Cargo.toml @@ -32,7 +32,7 @@ diem-transaction-builder = { path = "../../client/transaction-builder" } [dev-dependencies] futures = "0.3.12" rand = "0.8.3" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } executor = { path = "../../execution/executor" } executor-test-helpers = { path = "../../execution/executor-test-helpers" } diff --git a/state-sync/Cargo.toml b/state-sync/Cargo.toml index 9eea8549affb..820b2bd221a6 100644 --- a/state-sync/Cargo.toml +++ b/state-sync/Cargo.toml @@ -19,7 +19,7 @@ proptest = { version = "1.0.0", optional = true } rand = "0.8.3" serde = { version = "1.0.124", default-features = false } thiserror = "1.0.24" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-stream = "0.1.4" channel = { path = "../common/channel" } diff --git a/storage/backup/backup-cli/Cargo.toml b/storage/backup/backup-cli/Cargo.toml index f2a416d6c055..224e4854aa1e 100644 --- a/storage/backup/backup-cli/Cargo.toml +++ b/storage/backup/backup-cli/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.124", features = ["derive"] } serde_json = "1.0.64" structopt = "0.3.21" toml = "0.5.8" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-stream = "0.1.4" tokio-util = { version = "0.6.4", features = ["compat"] } diff --git a/storage/backup/backup-service/Cargo.toml b/storage/backup/backup-service/Cargo.toml index 3f60e21760b2..0cfd3f6783f3 100644 --- a/storage/backup/backup-service/Cargo.toml +++ b/storage/backup/backup-service/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.12" hyper = "0.14.4" once_cell = "1.7.2" serde = { version = "1.0.124", default-features = false } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } warp = "0.3.0" bcs = "0.1.2" diff --git a/storage/storage-service/Cargo.toml b/storage/storage-service/Cargo.toml index 15d93c56f022..33e083f74009 100644 --- a/storage/storage-service/Cargo.toml +++ b/storage/storage-service/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] anyhow = "1.0.38" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } futures = "0.3.12" bcs = "0.1.2" diff --git a/testsuite/cli/Cargo.toml b/testsuite/cli/Cargo.toml index 99d8aa3554ea..505fa1918392 100644 --- a/testsuite/cli/Cargo.toml +++ b/testsuite/cli/Cargo.toml @@ -21,7 +21,7 @@ once_cell = "1.7.2" reqwest = { version = "0.11.2", features = ["blocking", "json"] } serde = { version = "1.0.124", features = ["derive"] } structopt = "0.3.21" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } walkdir = "2.3.1" diem-config = { path = "../../config" } diff --git a/testsuite/cluster-test/Cargo.toml b/testsuite/cluster-test/Cargo.toml index 2c5034dd3362..8d077d29399d 100644 --- a/testsuite/cluster-test/Cargo.toml +++ b/testsuite/cluster-test/Cargo.toml @@ -62,7 +62,7 @@ state-sync = { path = "../../state-sync" } transaction-builder = { path = "../../language/transaction-builder" } futures = "0.3.12" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } async-trait = "0.1.42" kube = "0.51.0" diff --git a/testsuite/smoke-test/Cargo.toml b/testsuite/smoke-test/Cargo.toml index 1b7800aede9c..68b10334a567 100644 --- a/testsuite/smoke-test/Cargo.toml +++ b/testsuite/smoke-test/Cargo.toml @@ -20,7 +20,7 @@ regex = "1.4.3" rust_decimal = "1.10.3" rusty-fork = "0.3.0" statistical = "1.0.0" -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } backup-cli = { path = "../../storage/backup/backup-cli" } cli = { path = "../cli", features = ["fuzzing"] }