From 36d2233579a179ba078b44a7e0d91206fe959bf0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 10 Feb 2023 10:13:37 +0100 Subject: [PATCH] chore: fix dependency on Tokio (#5445) --- 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 6ba99ec05..6a4218401 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -34,7 +34,7 @@ rt = ["tokio/rt", "tokio/sync", "futures-util", "hashbrown"] __docs_rs = ["futures-util"] [dependencies] -tokio = { version = "1.21.0", path = "../tokio", features = ["sync"] } +tokio = { version = "1.22.0", path = "../tokio", features = ["sync"] } bytes = "1.0.0" futures-core = "0.3.0" futures-sink = "0.3.0"