From 9134f4f32a7b75418a0a24b140de1cb042957bf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jan 2022 17:02:06 +0000 Subject: [PATCH] Update tokio requirement from 0.2 to 1.15 in /relayer 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.0...tokio-0.2.25) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- relayer/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relayer/Cargo.toml b/relayer/Cargo.toml index d43c9b4b0c..dbf5f4a4b1 100644 --- a/relayer/Cargo.toml +++ b/relayer/Cargo.toml @@ -19,7 +19,7 @@ sled = { version = "0.34.4", features = ["no_metrics", "no_logs"] } thiserror = "1.0.11" toml = "0.5" tracing = "0.1.13" -tokio = { version = "0.2", features = ["rt-core", "time", "stream", "sync"] } +tokio = { version = "1.15", features = ["rt-core", "time", "stream", "sync"] } serde_json = { version = "1" } bytes = "0.6.0" prost = "0.6.1"