diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/broadcast_channel/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/crypto/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/fetch/Cargo.toml | 8 | ||||
-rw-r--r-- | extensions/net/Cargo.toml | 10 | ||||
-rw-r--r-- | extensions/timers/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/url/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/web/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/webgpu/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/websocket/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/webstorage/Cargo.toml | 2 |
10 files changed, 22 insertions, 22 deletions
diff --git a/extensions/broadcast_channel/Cargo.toml b/extensions/broadcast_channel/Cargo.toml index edc43d088..cdbf1e18f 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.92.0", path = "../../core" } -tokio = { version = "1.8.0", features = ["full"] } +tokio = { version = "1.8.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml index a2d4df125..3bed5bf3f 100644 --- a/extensions/crypto/Cargo.toml +++ b/extensions/crypto/Cargo.toml @@ -16,13 +16,13 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.92.0", path = "../../core" } deno_web = { version = "0.41.1", path = "../web" } -tokio = { version = "1.8.0", features = ["full"] } -rand = "0.8.3" +tokio = { version = "1.8.1", features = ["full"] } +rand = "0.8.4" ring = { version = "0.16.20", features = ["std"] } rsa = "0.4.0" # TODO: remove "pem" feature when next release is on crates.io sha-1 = "0.9.6" sha2 = "0.9.5" -serde = { version = "1.0.123", features = ["derive"] } +serde = { version = "1.0.126", features = ["derive"] } uuid = { version = "0.8.2", features = ["v4"] } lazy_static = "1.4.0" num-traits = "0.2.14"
\ No newline at end of file diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index 1694e6760..5e54dd4b7 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -19,8 +19,8 @@ data-url = "0.1.0" deno_core = { version = "0.92.0", path = "../../core" } deno_web = { version = "0.41.1", 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.8.0", features = ["full"] } -tokio-stream = "0.1.5" +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"] } +tokio-stream = "0.1.7" tokio-util = "0.6.7" diff --git a/extensions/net/Cargo.toml b/extensions/net/Cargo.toml index de84dd851..c6219cad4 100644 --- a/extensions/net/Cargo.toml +++ b/extensions/net/Cargo.toml @@ -21,12 +21,12 @@ base64 = "0.13.0" bytes = "1" log = "0.4.14" lazy_static = "1.4.0" -http = "0.2.3" -hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] } +http = "0.2.4" +hyper = { version = "0.14.10", features = ["server", "stream", "http1", "http2", "runtime"] } ring = "0.16.20" -rustls = "0.19.0" -serde = { version = "1.0.125", features = ["derive"] } -tokio = { version = "1.8.0", features = ["full"] } +rustls = "0.19.1" +serde = { version = "1.0.126", features = ["derive"] } +tokio = { version = "1.8.1", features = ["full"] } tokio-util = { version = "0.6", features = ["io"] } webpki = "0.21.4" webpki-roots = "0.21.1" diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml index 69c0691a4..b25c2f244 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.92.0", path = "../../core" } -tokio = { version = "1.8.0", features = ["full"] } +tokio = { version = "1.8.1", features = ["full"] } [dev-dependencies] deno_bench_util = { version = "0.4.0", path = "../../bench_util" } diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml index 6633e001b..b473a4907 100644 --- a/extensions/url/Cargo.toml +++ b/extensions/url/Cargo.toml @@ -17,7 +17,7 @@ path = "lib.rs" deno_core = { version = "0.92.0", path = "../../core" } idna = "0.2.3" percent-encoding = "2.1.0" -serde = { version = "1.0.125", features = ["derive"] } +serde = { version = "1.0.126", features = ["derive"] } [dev-dependencies] deno_bench_util = { version = "0.4.0", path = "../../bench_util" } diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml index 0bc1424bf..1377eefe6 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -19,7 +19,7 @@ base64 = "0.13.0" deno_core = { version = "0.92.0", path = "../../core" } encoding_rs = "0.8.28" serde = "1.0" -tokio = "1.8.0" +tokio = "1.8.1" uuid = { version = "0.8.2", features = ["v4", "serde"] } [dev-dependencies] diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index 3c9cae8b4..441499533 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.92.0", path = "../../core" } -tokio = { version = "1.8.0", features = ["full"] } -serde = { version = "1.0.125", features = ["derive"] } +tokio = { version = "1.8.1", features = ["full"] } +serde = { version = "1.0.126", features = ["derive"] } wgpu-core = { version = "0.9.0", features = ["trace"] } wgpu-types = "0.9.0" diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml index 0ca38e773..ddf951476 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -15,9 +15,9 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.92.0", path = "../../core" } -http = "0.2.3" -serde = { version = "1.0.125", features = ["derive"] } -tokio = { version = "1.8.0", features = ["full"] } +http = "0.2.4" +serde = { version = "1.0.126", features = ["derive"] } +tokio = { version = "1.8.1", features = ["full"] } tokio-rustls = "0.22.0" tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] } hyper = { version = "0.14.9" } diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml index 8ba4ffbde..f179c8d6a 100644 --- a/extensions/webstorage/Cargo.toml +++ b/extensions/webstorage/Cargo.toml @@ -17,4 +17,4 @@ path = "lib.rs" deno_core = { version = "0.92.0", path = "../../core" } deno_web = { version = "0.41.1", path = "../web" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } -serde = { version = "1.0.125", features = ["derive"] } +serde = { version = "1.0.126", features = ["derive"] } |