From 7c084f357f4dbbdd38c94d9c5ee23b80e3ddf907 Mon Sep 17 00:00:00 2001 From: Ronny Chan Date: Tue, 22 Oct 2024 12:58:31 -0400 Subject: [PATCH] fix: unpin tokio version (#26457) Fixes https://github.com/denoland/deno/issues/26455 Signed-off-by: Ronny Chan --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7d5c507cae..61d6ca37ae 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"