From e33b7dccb61c9cfc6969ae68ed2764ab7f7dff4c Mon Sep 17 00:00:00 2001 From: Ronny Chan Date: Mon, 21 Oct 2024 18:20:51 -0400 Subject: [PATCH] fix: unpin tokio version Signed-off-by: Ronny Chan --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7d5c507cae9685..61d6ca37ae38ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -187,7 +187,7 @@ tar = "=0.4.40" tempfile = "3.4.0" termcolor = "1.1.3" thiserror = "1.0.61" -tokio = { version = "=1.36.0", features = ["full"] } +tokio = { version = "1.36.0", features = ["full"] } tokio-metrics = { version = "0.3.0", features = ["rt"] } tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring", "tls12"] } tokio-socks = "0.5.1"