diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/broadcast_channel/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/timers/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/tls/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/url/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/webgpu/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/websocket/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/webstorage/Cargo.toml | 2 |
13 files changed, 24 insertions, 24 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index 20f0b507e..1e4ab3c28 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.98.0", path = "../../core" } -tokio = { version = "1.8.1", features = ["full"] } +tokio = { version = "1.10.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 349fb0265..976d8bbe9 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -21,8 +21,8 @@ num-traits = "0.2.14" rand = "0.8.4" ring = { version = "0.16.20", features = ["std"] } rsa = { version = "0.5.0", default-features = false, features = ["std"] } -serde = { version = "1.0.126", features = ["derive"] } +serde = { version = "1.0.129", features = ["derive"] } sha-1 = "0.9.7" sha2 = "0.9.5" -tokio = { version = "1.8.1", features = ["full"] } +tokio = { version = "1.10.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index b1606ae9e..eedac9954 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -14,7 +14,7 @@ description = "Fetch API implementation for Deno" path = "lib.rs" [dependencies] -bytes = "1.0.1" +bytes = "1.1.0" data-url = "0.1.0" deno_core = { version = "0.98.0", path = "../../core" } deno_tls = { version = "0.3.0", path = "../tls" } @@ -22,7 +22,7 @@ deno_web = { version = "0.47.0", path = "../web" } http = "0.2.4" lazy_static = "1.4.0" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } -serde = { version = "1.0.126", features = ["derive"] } -tokio = { version = "1.8.1", features = ["full"] } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } tokio-stream = "0.1.7" tokio-util = "0.6.7" diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index 04b086c18..2faf5ecb8 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -17,4 +17,4 @@ path = "lib.rs" deno_core = { version = "0.98.0", path = "../../core" } dlopen = "0.1.8" libffi = { version = "=0.0.7", package = "deno-libffi" } -serde = { version = "1.0.125", features = ["derive"] } +serde = { version = "1.0.129", features = ["derive"] } diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index 3940d8968..4c62085b1 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -20,6 +20,6 @@ deno_core = { version = "0.98.0", path = "../../core" } deno_websocket = { version = "0.21.0", path = "../websocket" } hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] } ring = "0.16.20" -serde = { version = "1.0.125", features = ["derive"] } -tokio = { version = "1.8.0", features = ["full"] } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } tokio-util = { version = "0.6.7", features = ["io"] } diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 159899078..f8a633997 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -19,7 +19,7 @@ deno_tls = { version = "0.3.0", path = "../tls" } lazy_static = "1.4.0" log = "0.4.14" -serde = { version = "1.0.126", features = ["derive"] } -tokio = { version = "1.8.1", features = ["full"] } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } trust-dns-proto = "0.20.3" trust-dns-resolver = { version = "0.20.3", features = ["tokio-runtime", "serde-config"] } diff --git a/ext/timers/Cargo.toml b/ext/timers/Cargo.toml index c481e970f..2c5236c11 100644 --- a/ext/timers/Cargo.toml +++ b/ext/timers/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.98.0", path = "../../core" } -tokio = { version = "1.8.1", features = ["full"] } +tokio = { version = "1.10.1", features = ["full"] } [dev-dependencies] deno_bench_util = { version = "0.10.0", path = "../../bench_util" } diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index a5c04b7cd..27891752e 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -19,6 +19,6 @@ lazy_static = "1.4.0" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } rustls = { version = "0.19.1", features = ["dangerous_configuration"] } rustls-native-certs = "0.5.0" -serde = { version = "1.0.126", features = ["derive"] } +serde = { version = "1.0.129", features = ["derive"] } webpki = "0.21.4" webpki-roots = "0.21.1" diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index e0bcdec63..830661015 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -17,7 +17,7 @@ path = "lib.rs" deno_core = { version = "0.98.0", path = "../../core" } idna = "0.2.3" percent-encoding = "2.1.0" -serde = { version = "1.0.126", features = ["derive"] } +serde = { version = "1.0.129", features = ["derive"] } serde_repr = "0.1.7" [dev-dependencies] diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 521bbca88..da2f4e224 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -14,12 +14,12 @@ description = "Collection of Web APIs" path = "lib.rs" [dependencies] -async-trait = "0.1.50" +async-trait = "0.1.51" base64 = "0.13.0" deno_core = { version = "0.98.0", path = "../../core" } encoding_rs = "0.8.28" -serde = "1.0" -tokio = { version = "1.8.1", features = ["full"] } +serde = "1.0.129" +tokio = { version = "1.10.1", 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 1108d9ae6..d2f11a1bc 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.98.0", path = "../../core" } -serde = { version = "1.0.126", features = ["derive"] } -tokio = { version = "1.8.1", features = ["full"] } -wgpu-core = { version = "0.10.0", features = ["trace"] } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } +wgpu-core = { version = "0.10.1", features = ["trace"] } wgpu-types = "0.10.0" diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 0094d78cc..e2adf1420 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -17,8 +17,8 @@ path = "lib.rs" deno_core = { version = "0.98.0", path = "../../core" } deno_tls = { version = "0.3.0", path = "../tls" } http = "0.2.4" -hyper = { version = "0.14.9" } -serde = { version = "1.0.126", features = ["derive"] } -tokio = { version = "1.8.1", features = ["full"] } +hyper = { version = "0.14.12" } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } tokio-rustls = "0.22.0" tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] } diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index 7083ee00b..058e2ae19 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -17,4 +17,4 @@ path = "lib.rs" deno_core = { version = "0.98.0", path = "../../core" } deno_web = { version = "0.47.0", path = "../web" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } -serde = { version = "1.0.126", features = ["derive"] } +serde = { version = "1.0.129", features = ["derive"] } |