From 9d9eac2b77961d17c71d8b7ccd723b491d1c8342 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 1 Feb 2021 06:26:44 +0000 Subject: [PATCH] build(deps): update tokio requirement from 0.2.18 to 1.1.1 Updates the requirements on [tokio](https://github.com/tokio-rs/tokio) to permit the latest version. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-0.2.18...tokio-1.1.1) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- components/epaxos/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29707d7c..cc24d67b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ net2 = { version = "0.2.2", features = ["nightly"] } parse = { path = "components/parse" } redis = { version = "0.15.1"} rand = { version = "0.7" } -tokio = { version = "0.2.18", features = ["full"] } +tokio = { version = "1.1.1", features = ["full"] } tokio-util = { version = "0.2.0", features = ["full"] } tonic = "0.2" clap = { version = "~2.33.0" } # command line argument parse diff --git a/components/epaxos/Cargo.toml b/components/epaxos/Cargo.toml index 435b77e8..b97e82bc 100644 --- a/components/epaxos/Cargo.toml +++ b/components/epaxos/Cargo.toml @@ -23,7 +23,7 @@ maplit = { version = "1.0.2" } tempfile = { version = "3.1.0" } prost = { version = "0.6.1" } tonic = "0.2" -tokio = { version = "0.2.18", features = ["full"] } +tokio = { version = "1.1.1", features = ["full"] } derive_more = "0.99.3" num = "0.2.1" serde = { version = "1.0", features = ["derive"] }