summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/broadcast_channel/Cargo.toml2
-rw-r--r--extensions/crypto/Cargo.toml2
-rw-r--r--extensions/fetch/Cargo.toml2
-rw-r--r--extensions/timers/Cargo.toml2
-rw-r--r--extensions/webgpu/Cargo.toml2
-rw-r--r--extensions/websocket/Cargo.toml2
6 files changed, 6 insertions, 6 deletions
diff --git a/extensions/broadcast_channel/Cargo.toml b/extensions/broadcast_channel/Cargo.toml
index 49b036ef2..10cc3b250 100644
--- a/extensions/broadcast_channel/Cargo.toml
+++ b/extensions/broadcast_channel/Cargo.toml
@@ -16,5 +16,5 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1"
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.4.0", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index 88a4c0388..94b2ad173 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
deno_web = { version = "0.40.0", path = "../web" }
-tokio = { version = "1.6.1", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
rand = "0.8.3"
ring = "0.16.20"
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
index 0e8347f56..2bb58bc03 100644
--- a/extensions/fetch/Cargo.toml
+++ b/extensions/fetch/Cargo.toml
@@ -21,6 +21,6 @@ deno_web = { version = "0.40.0", path = "../web" }
http = "0.2.4"
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.125", features = ["derive"] }
-tokio = { version = "1.6.1", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
tokio-stream = "0.1.5"
tokio-util = "0.6.7"
diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml
index 18f3cc615..6366ea553 100644
--- a/extensions/timers/Cargo.toml
+++ b/extensions/timers/Cargo.toml
@@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.6.1", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
[dev-dependencies]
deno_bench_util = { version = "0.3.0", path = "../../bench_util" }
diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml
index 70ff6d75d..31f6388c2 100644
--- a/extensions/webgpu/Cargo.toml
+++ b/extensions/webgpu/Cargo.toml
@@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.6.1", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.1", features = ["trace"] }
wgpu-types = "0.8.0"
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 9dca22146..071d9a26a 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -17,7 +17,7 @@ path = "lib.rs"
deno_core = { version = "0.90.0", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
-tokio = { version = "1.6.1", features = ["full"] }
+tokio = { version = "1.7.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
webpki = "0.21.4"