From 3a6cd0ad8e9303b122fc561a60050d3c6d0edef7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 20:51:39 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.36.0 to 1.37.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.36.0 to 1.37.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.36.0...tokio-1.37.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- apps/sdk/Cargo.toml | 2 +- chain/Cargo.toml | 2 +- core/Cargo.toml | 4 ++-- discovery/Cargo.toml | 2 +- exo/Cargo.toml | 2 +- store/Cargo.toml | 2 +- transport/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8e17b835..a8f42da22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5595,9 +5595,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index 907dbb39d..a2a50645e 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -22,4 +22,4 @@ thiserror = "1.0.58" chrono = { version = "0.4.37", default-features = false, features = [] } [dev-dependencies] -tokio = { version = "1.36.0", features = ["macros"], default-features = false } +tokio = { version = "1.37.0", features = ["macros"], default-features = false } diff --git a/chain/Cargo.toml b/chain/Cargo.toml index f85bb4ea0..4ed88d25d 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -41,7 +41,7 @@ tempfile = { version = "3.10.1", optional = true } exocore-core = {version = "0.1.25", path = "../core", features = ["tests-utils"]} exocore-transport = {version = "0.1.25", path = "../transport", features = ["tests-utils"]} tempfile = "3.10.1" -tokio = { version = "1.36.0", features = ["macros"], default-features = false } +tokio = { version = "1.37.0", features = ["macros"], default-features = false } [[test]] name = "engine" diff --git a/core/Cargo.toml b/core/Cargo.toml index 1aaf3ee2d..e51df14f3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -64,7 +64,7 @@ wasm-bindgen-futures = "0.4.42" chrono = { version = "0.4.35", default-features = false, features = [] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.36.0", features = ["rt"], default-features = false } +tokio = { version = "1.37.0", features = ["rt"], default-features = false } [build-dependencies] shadow-rs = { version = "0.27.1", default-features = false } @@ -73,7 +73,7 @@ shadow-rs = { version = "0.27.1", default-features = false } criterion_bencher_compat = "0.4.0" log4rs = "1.3.0" tempfile = "3.10.1" -tokio = { version = "1.36.0", features = ["macros", "rt", "rt-multi-thread", "time"], default-features = false } +tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread", "time"], default-features = false } [[bench]] harness = false diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 9738a3807..f59b12dc2 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -29,7 +29,7 @@ wasm-timer = "0.2.5" # For server hyper = { version = "0.14.28", features = ["full"], optional = true } -tokio = { version = "1.36.0", default-features = false, features = ["macros", "time"], optional = true } +tokio = { version = "1.37.0", default-features = false, features = ["macros", "time"], optional = true } [[test]] name = "discovery" diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 554887a68..606898f59 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -34,6 +34,6 @@ serde_derive = "1.0.197" serde_json = "1.0.115" tempfile = "3.10.1" thiserror = "1.0.58" -tokio = { version = "1.36.0", features = ["macros"], default-features = false } +tokio = { version = "1.37.0", features = ["macros"], default-features = false } url = "2.5.0" zip = { version = "0.6.6", features = ["deflate"], default-features = false } diff --git a/store/Cargo.toml b/store/Cargo.toml index ca0699db0..e777812c7 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -58,4 +58,4 @@ tantivy = {version = "0.19.2", optional = true} exocore-chain = {version = "0.1.25", path = "../chain", features = ["tests-utils"]} exocore-core = {version = "0.1.25", path = "../core", features = ["tests-utils"]} tempfile = "3.10.1" -tokio = {version = "1.36.0", features = ["macros"], default-features = false} +tokio = {version = "1.37.0", features = ["macros"], default-features = false} diff --git a/transport/Cargo.toml b/transport/Cargo.toml index c77a42542..d37617b12 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -35,4 +35,4 @@ url = {version = "2.5.0", optional = true} [dev-dependencies] exocore-core = {version = "0.1.25", path = "../core", features = ["tests-utils"]} -tokio = {version = "1.36.0", features = ["macros"], default-features = false} +tokio = {version = "1.37.0", features = ["macros"], default-features = false}