diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/broadcast_channel/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 8 | ||||
-rw-r--r-- | ext/crypto/decrypt.rs | 2 | ||||
-rw-r--r-- | ext/crypto/encrypt.rs | 2 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/flash/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/net/ops.rs | 2 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/webgpu/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/websocket/Cargo.toml | 2 |
13 files changed, 21 insertions, 23 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index 72fbf7b56..2c6bb9c1a 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.151.0", path = "../../core" } -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4"] } diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index fa7161aab..7ec95135e 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -15,9 +15,7 @@ path = "lib.rs" [dependencies] aes = "0.8.1" -# TODO(@littledivy): Move to stable release -# https://github.com/RustCrypto/AEADs/issues/411 -aes-gcm = "=0.10.0-pre" +aes-gcm = "0.10" aes-kw = { version = "0.2.1", features = ["alloc"] } base64 = "0.13.0" block-modes = "0.9.1" @@ -33,12 +31,12 @@ p256 = { version = "0.11.1", features = ["ecdh"] } p384 = "0.11.1" rand = "0.8.4" ring = { version = "0.16.20", features = ["std"] } -rsa = { version = "0.7.0-pre", default-features = false, features = ["std"] } +rsa = { version = "=0.7.0-pre", default-features = false, features = ["std"] } sec1 = "0.3.0" serde = { version = "1.0.129", features = ["derive"] } serde_bytes = "0.11" sha-1 = "0.10.0" sha2 = "0.10.2" spki = "0.6.0" -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4"] } diff --git a/ext/crypto/decrypt.rs b/ext/crypto/decrypt.rs index 85d5f5210..c83ff55bd 100644 --- a/ext/crypto/decrypt.rs +++ b/ext/crypto/decrypt.rs @@ -9,7 +9,7 @@ use aes_gcm::aes::Aes128; use aes_gcm::aes::Aes192; use aes_gcm::aes::Aes256; use aes_gcm::AeadInPlace; -use aes_gcm::NewAead; +use aes_gcm::KeyInit; use aes_gcm::Nonce; use ctr::cipher::StreamCipher; use ctr::Ctr128BE; diff --git a/ext/crypto/encrypt.rs b/ext/crypto/encrypt.rs index ffa441c0f..9420acdbd 100644 --- a/ext/crypto/encrypt.rs +++ b/ext/crypto/encrypt.rs @@ -11,7 +11,7 @@ use aes_gcm::aes::Aes128; use aes_gcm::aes::Aes192; use aes_gcm::aes::Aes256; use aes_gcm::AeadInPlace; -use aes_gcm::NewAead; +use aes_gcm::KeyInit; use aes_gcm::Nonce; use ctr::Ctr128BE; use ctr::Ctr32BE; diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 67720c7f7..8f6488946 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -22,6 +22,6 @@ dyn-clone = "1" http = "0.2.6" reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks"] } serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } tokio-stream = "0.1.8" -tokio-util = { version = "0.7.1", features = ["io"] } +tokio-util = { version = "0.7", features = ["io"] } diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index edfc3ee73..5db801963 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -19,7 +19,7 @@ dlopen = "0.1.8" dynasmrt = "1.2.3" libffi = "3.0.0" serde = { version = "1.0.129", features = ["derive"] } -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["errhandlingapi", "minwindef", "ntdef", "winbase", "winnt"] } diff --git a/ext/flash/Cargo.toml b/ext/flash/Cargo.toml index 353cb6b35..bc0a8dd14 100644 --- a/ext/flash/Cargo.toml +++ b/ext/flash/Cargo.toml @@ -24,6 +24,6 @@ libc = "0.2" log = "0.4.17" mio = { version = "0.8.1", features = ["os-poll", "net"] } rustls = { version = "0.20" } -rustls-pemfile = { version = "0.2.1" } +rustls-pemfile = "1.0" serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.19", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index acf95aee1..058b5ad76 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -33,8 +33,8 @@ percent-encoding = "2.2.0" phf = { version = "0.10", features = ["macros"] } ring = "0.16.20" serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.17", features = ["full"] } -tokio-util = { version = "0.7.1", features = ["io"] } +tokio = { version = "1.21", features = ["full"] } +tokio-util = { version = "0.7", features = ["io"] } [dev-dependencies] bencher = "0.1" diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 30a07bae9..f6a637cb9 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -19,6 +19,6 @@ deno_tls = { version = "0.56.0", path = "../tls" } log = "0.4.16" serde = { version = "1.0.136", features = ["derive"] } socket2 = "0.4.4" -tokio = { version = "1.17", features = ["full"] } -trust-dns-proto = "=0.21.2" -trust-dns-resolver = { version = "=0.21.2", features = ["tokio-runtime", "serde-config"] } +tokio = { version = "1.21", features = ["full"] } +trust-dns-proto = "0.22" +trust-dns-resolver = { version = "0.22", features = ["tokio-runtime", "serde-config"] } diff --git a/ext/net/ops.rs b/ext/net/ops.rs index a05c21da8..d0f42f189 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -685,7 +685,7 @@ where let resolver = AsyncResolver::tokio(config, opts)?; let results = resolver - .lookup(query, record_type, Default::default()) + .lookup(query, record_type) .await .map_err(|e| { let message = format!("{}", e); diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 1b3e13cdf..40bcdfd85 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -15,12 +15,12 @@ path = "lib.rs" [dependencies] async-trait = "0.1.51" -base64-simd = "0.6.2" +base64-simd = "0.7" deno_core = { version = "0.151.0", path = "../../core" } encoding_rs = "0.8.31" flate2 = "1" serde = "1.0.136" -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4", "serde"] } [dev-dependencies] diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index fe5a6c99d..848ee6e23 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.151.0", path = "../../core" } serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } wgpu-core = { version = "0.13", features = ["trace", "replay", "serde"] } wgpu-types = { version = "0.13", features = ["trace", "replay", "serde"] } diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 0e3310b9d..91b3c5b3c 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -19,6 +19,6 @@ deno_tls = { version = "0.56.0", path = "../tls" } http = "0.2.6" hyper = { version = "0.14.18" } serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.17", features = ["full"] } +tokio = { version = "1.21", features = ["full"] } tokio-rustls = "0.23.3" tokio-tungstenite = { version = "0.16.1", features = ["rustls-tls-webpki-roots"] } |