From b10326d31aa233039dce4e405c0ee941f49cbab0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Mar 2023 11:02:59 +0000 Subject: [PATCH] Update tokio requirement from =1.10.1 to =1.27.0 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-1.10.1...tokio-1.27.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- daemon/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 7e1dfde..b31fa87 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -14,7 +14,7 @@ chrono = "0.4" prost = "0.8" prost-types = "0.8" prost-derive = "0.8" -tokio = { version = "=1.10.1", features = ["full"] } +tokio = { version = "=1.27.0", features = ["full"] } tokio-util = { version = "0.6", features = ["codec","time"] } tokio-stream = { version = "0.1", features = ["net"] } clap = "2.33"