diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/broadcast_channel/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/webgpu/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/websocket/Cargo.toml | 2 |
9 files changed, 11 insertions, 11 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index 3459bd204..ae080c607 100644 --- a/ext/broadcast_channel/Cargo.toml +++ b/ext/broadcast_channel/Cargo.toml @@ -16,5 +16,5 @@ path = "lib.rs" [dependencies] async-trait = "0.1" deno_core = { version = "0.127.0", path = "../../core" } -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 77f01a1a6..b03c78851 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -35,5 +35,5 @@ serde_bytes = "0.11" sha-1 = "0.9.7" sha2 = "0.9.5" spki = "0.4.1" -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 7c7ed8d19..10b612482 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -22,6 +22,6 @@ dyn-clone = "1" http = "0.2.4" reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.129", features = ["derive"] } -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } tokio-stream = "0.1.7" -tokio-util = "0.6.7" +tokio-util = "0.7.0" diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index 166a78bd9..b5b9059cc 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -18,7 +18,7 @@ deno_core = { version = "0.127.0", path = "../../core" } dlopen = "0.1.8" libffi = "2.0.0" serde = { version = "1.0.129", features = ["derive"] } -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] } diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index ff63c3739..98470cf75 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -27,5 +27,5 @@ mime = "0.3.16" percent-encoding = "2.1.0" ring = "0.16.20" serde = { version = "1.0.129", features = ["derive"] } -tokio = { version = "1.10.1", features = ["full"] } -tokio-util = { version = "0.6.7", features = ["io"] } +tokio = { version = "1.17", features = ["full"] } +tokio-util = { version = "0.7.0", features = ["io"] } diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 1762a9f9e..7fde312b3 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -19,6 +19,6 @@ deno_tls = { version = "0.32.0", path = "../tls" } log = "0.4.14" serde = { version = "1.0.129", features = ["derive"] } socket2 = "0.4.2" -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } trust-dns-proto = "0.20.3" trust-dns-resolver = { version = "0.20.3", features = ["tokio-runtime", "serde-config"] } diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 92ab2bfdb..dfa1e76c1 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -20,7 +20,7 @@ deno_core = { version = "0.127.0", path = "../../core" } encoding_rs = "0.8.29" flate2 = "1" serde = "1.0.129" -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } uuid = { version = "0.8.2", features = ["v4", "serde"] } [dev-dependencies] diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index ca34de361..1994a131c 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -13,6 +13,6 @@ description = "WebGPU implementation for Deno" [dependencies] deno_core = { version = "0.127.0", path = "../../core" } serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.10", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } wgpu-core = { version = "0.12", features = ["trace", "replay", "serde"] } wgpu-types = { version = "0.12", features = ["trace", "replay", "serde"] } diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 5aeda0039..0b738b346 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -19,6 +19,6 @@ deno_tls = { version = "0.32.0", path = "../tls" } http = "0.2.4" hyper = { version = "0.14.12" } serde = { version = "1.0.129", features = ["derive"] } -tokio = { version = "1.10.1", features = ["full"] } +tokio = { version = "1.17", features = ["full"] } tokio-rustls = "0.23.0" tokio-tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] } |