From 69f135ed60864c8d42890b637ffa90ea0fd30ceb Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sat, 12 Feb 2022 10:02:07 +0100 Subject: [PATCH] util: bump tokio dependency to 1.6 to satisfy minimal versions (#4490) --- tokio-util/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index dcec5c17f..b4782d5d9 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -34,7 +34,7 @@ rt = ["tokio/rt", "tokio/sync", "futures-util"] __docs_rs = ["futures-util"] [dependencies] -tokio = { version = "1.0.0", path = "../tokio", features = ["sync"] } +tokio = { version = "1.6.0", path = "../tokio", features = ["sync"] } bytes = "1.0.0" futures-core = "0.3.0"