summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorRonny Chan <ronny.chan@okta.com>2024-10-22 12:58:31 -0400
committerGitHub <noreply@github.com>2024-10-22 09:58:31 -0700
commit227acbbff55fa32ca025937f6081d9f255d98c8f (patch)
tree21d4bc75bb32a685ca5fe598d7276e464ccadf5c /Cargo.toml
parent0536f1ef3b4dcba1668e74c69342e8e07ff48af5 (diff)
fix: unpin tokio version (#26457)
Fixes https://github.com/denoland/deno/issues/26455 Signed-off-by: Ronny Chan <ronny.chan@okta.com>
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7d5c507ca..61d6ca37a 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"