From 625cbbcf81107a39931464e037689e9568b214b7 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 8 Feb 2021 11:56:27 +0200 Subject: [PATCH] chore(deps): bump tokio from 1.1.1 to 1.2.0 (#189) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.1.1 to 1.2.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.1.1...tokio-1.2.0) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- ethers-contract/Cargo.toml | 2 +- ethers-middleware/Cargo.toml | 4 ++-- ethers-providers/Cargo.toml | 4 ++-- ethers-signers/Cargo.toml | 2 +- ethers/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8b7821f4..88b87651 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2277,9 +2277,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.1.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6714d663090b6b0acb0fa85841c6d66233d150cdb2602c8f9b8abb03370beb3f" +checksum = "e8190d04c665ea9e6b6a0dc45523ade572c088d2e6566244c1122671dbf4ae3a" dependencies = [ "autocfg", "bytes", @@ -2293,9 +2293,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42517d2975ca3114b22a16192634e8241dc5cc1f130be194645970cc1c371494" +checksum = "caf7b11a536f46a809a8a9f0bb4237020f70ecbf115b842360afb127ea2fda57" dependencies = [ "proc-macro2", "quote", diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index e910d8d6..5b4f24d2 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -27,7 +27,7 @@ hex = { version = "0.4.2", default-features = false, features = ["std"] } [dev-dependencies] ethers = { version = "0.2", path = "../ethers" } ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false, features = ["ws"] } -tokio = { version = "1.1", default-features = false, features = ["macros"] } +tokio = { version = "1.2", default-features = false, features = ["macros"] } ethers-signers = { version = "0.2", path = "../ethers-signers" } ethers-middleware = { version = "0.2", path = "../ethers-middleware" } diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index f744309e..0adcacb4 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -32,14 +32,14 @@ reqwest = { version = "0.11.0", default-features = false, features = ["json", "r url = { version = "2.2.0", default-features = false } serde_json = { version = "1.0.61", default-features = false } -tokio = { version = "1.1" } +tokio = { version = "1.2" } [dev-dependencies] ethers = { version = "0.2", path = "../ethers" } futures-executor = { version = "0.3.12", features = ["thread-pool"] } hex = { version = "0.4.2", default-features = false, features = ["std"] } rand = { version = "0.7.3", default-features = false } -tokio = { version = "1.1", default-features = false, features = ["rt", "macros", "time"] } +tokio = { version = "1.2", default-features = false, features = ["rt", "macros", "time"] } [features] celo = ["ethers-core/celo", "ethers-providers/celo", "ethers-signers/celo"] diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 66eac90d..e8cc0caa 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -37,12 +37,12 @@ tracing = { version = "0.1.23", default-features = false } tracing-futures = { version = "0.2.4", default-features = false } # tokio -tokio = { version = "1.1", default-features = false, optional = true } +tokio = { version = "1.2", default-features = false, optional = true } tokio-tungstenite = { version = "0.13.0", default-features = false, features = ["connect", "tls"], optional = true } [dev-dependencies] ethers = { version = "0.2", path = "../ethers" } -tokio = { version = "1.1", default-features = false, features = ["rt", "macros"] } +tokio = { version = "1.2", default-features = false, features = ["rt", "macros"] } [features] default = ["ws"] diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 18cdfe72..409b1a9b 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -34,7 +34,7 @@ ethers = { version = "0.2", path = "../ethers" } yubihsm = { version = "0.37.0", features = ["secp256k1", "usb", "mockhsm"] } tempfile = "3.2.0" -tokio = { version = "1.1", default-features = false, features = ["macros"] } +tokio = { version = "1.2", default-features = false, features = ["macros"] } serde_json = { version = "1.0.55", default-features = false } [features] diff --git a/ethers/Cargo.toml b/ethers/Cargo.toml index d2e9030b..6c9a1f82 100644 --- a/ethers/Cargo.toml +++ b/ethers/Cargo.toml @@ -47,4 +47,4 @@ anyhow = "1.0.38" rand = "0.7" serde = { version = "1.0.123", features = ["derive"] } serde_json = "1.0.53" -tokio = { version = "1.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.2", features = ["macros", "rt-multi-thread"] }