diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/fetch/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/timers/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/webgpu/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/websocket/Cargo.toml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index 83cd4ecdb..201417816 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -21,6 +21,6 @@ deno_file = { version = "0.6.0", path = "../file" } 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.0", features = ["full"] } +tokio = { version = "1.6.1", 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 d9bb23614..32cf02e86 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -15,4 +15,4 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.88.0", path = "../../core" } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index 5ada950b7..4a1c25db2 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.88.0", path = "../../core" } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", 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 a5a962e54..129aeb7ca 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -17,7 +17,7 @@ path = "lib.rs" deno_core = { version = "0.88.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.125", features = ["derive"] } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-rustls = "0.22.0" tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] } webpki = "0.21.4" |