summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorColin Ihrig <cjihrig@gmail.com>2022-05-05 19:37:27 -0400
committerGitHub <noreply@github.com>2022-05-05 19:37:27 -0400
commit23c77df6643f5b5a8846f67a738fe2e9c1e3c716 (patch)
tree06dd86c45dbae6c0c2f3f3d7502709f7014a4571 /ext
parenta58afc098d440b1bc0856f8850f0ef7716b7183f (diff)
1.21.2 (#14508)
1.21.2
Diffstat (limited to 'ext')
-rw-r--r--ext/broadcast_channel/Cargo.toml4
-rw-r--r--ext/console/Cargo.toml4
-rw-r--r--ext/crypto/Cargo.toml6
-rw-r--r--ext/fetch/Cargo.toml6
-rw-r--r--ext/ffi/Cargo.toml4
-rw-r--r--ext/http/Cargo.toml6
-rw-r--r--ext/net/Cargo.toml6
-rw-r--r--ext/tls/Cargo.toml4
-rw-r--r--ext/url/Cargo.toml8
-rw-r--r--ext/web/Cargo.toml10
-rw-r--r--ext/webgpu/Cargo.toml4
-rw-r--r--ext/webidl/Cargo.toml4
-rw-r--r--ext/websocket/Cargo.toml6
-rw-r--r--ext/webstorage/Cargo.toml6
14 files changed, 39 insertions, 39 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml
index f6db4df8e..414a83abf 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.44.0"
+version = "0.45.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -15,6 +15,6 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1"
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
tokio = { version = "1.17", features = ["full"] }
uuid = { version = "1.0.0", features = ["v4"] }
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index b17887cd5..a3e428a80 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.50.0"
+version = "0.51.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 8da99c983..17df04c2d 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.64.0"
+version = "0.65.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -20,8 +20,8 @@ aes-kw = { version = "0.1", features = ["alloc"] }
base64 = "0.13.0"
block-modes = "0.8.1"
ctr = "0.8.0"
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_web = { version = "0.81.0", path = "../web" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_web = { version = "0.82.0", path = "../web" }
elliptic-curve = { version = "0.10.6", features = ["std", "pem"] }
num-traits = "0.2.14"
once_cell = "1.10.0"
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 3f65b9ee8..28adbd839 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.73.0"
+version = "0.74.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
bytes = "1.1.0"
data-url = "0.1.1"
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_tls = { version = "0.37.0", path = "../tls" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_tls = { version = "0.38.0", path = "../tls" }
dyn-clone = "1"
http = "0.2.6"
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index d86dfc88f..42ba0f589 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.37.0"
+version = "0.38.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,7 +14,7 @@ description = "Dynamic library ffi for deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
dlopen = "0.1.8"
libffi = "3.0.0"
serde = { version = "1.0.129", features = ["derive"] }
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index b8773e3f6..cc16b25df 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.44.0"
+version = "0.45.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -23,8 +23,8 @@ base64 = "0.13.0"
brotli = "3.3.4"
bytes = "1"
cache_control = "0.2.0"
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_websocket = { version = "0.55.0", path = "../websocket" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_websocket = { version = "0.56.0", path = "../websocket" }
flate2 = "1.0.23"
fly-accept-encoding = "0.2.0-alpha.5"
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 0615cdc9e..5f661ab23 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.42.0"
+version = "0.43.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,8 +14,8 @@ description = "Networking for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_tls = { version = "0.37.0", path = "../tls" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_tls = { version = "0.38.0", path = "../tls" }
log = "0.4.16"
serde = { version = "1.0.136", features = ["derive"] }
socket2 = "0.4.4"
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 19f406ddd..497a3cc9b 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.37.0"
+version = "0.38.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,7 +14,7 @@ description = "TLS for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
once_cell = "1.10.0"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
rustls-native-certs = "0.6.2"
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index 1219f4f8d..ddda173d8 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.50.0"
+version = "0.51.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,14 +14,14 @@ description = "URL API implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
serde = { version = "1.0.136", features = ["derive"] }
serde_repr = "0.1.7"
urlpattern = "0.1.6"
[dev-dependencies]
-deno_bench_util = { version = "0.44.0", path = "../../bench_util" }
-deno_webidl = { version = "0.50.0", path = "../webidl" }
+deno_bench_util = { version = "0.45.0", path = "../../bench_util" }
+deno_webidl = { version = "0.51.0", path = "../webidl" }
[[bench]]
name = "url_ops"
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index e32bbf339..dbcc6badc 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.81.0"
+version = "0.82.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1.51"
base64 = "0.13.0"
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
encoding_rs = "0.8.31"
flate2 = "1"
serde = "1.0.136"
@@ -24,9 +24,9 @@ tokio = { version = "1.17", features = ["full"] }
uuid = { version = "1.0.0", features = ["v4", "serde"] }
[dev-dependencies]
-deno_bench_util = { version = "0.44.0", path = "../../bench_util" }
-deno_url = { version = "0.50.0", path = "../url" }
-deno_webidl = { version = "0.50.0", path = "../webidl" }
+deno_bench_util = { version = "0.45.0", path = "../../bench_util" }
+deno_url = { version = "0.51.0", path = "../url" }
+deno_webidl = { version = "0.51.0", path = "../webidl" }
[[bench]]
name = "timers_ops"
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml
index c150b73e3..4a44d5f9c 100644
--- a/ext/webgpu/Cargo.toml
+++ b/ext/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.51.0"
+version = "0.52.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -11,7 +11,7 @@ repository = "https://github.com/gfx-rs/wgpu"
description = "WebGPU implementation for Deno"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
wgpu-core = { version = "0.12", features = ["trace", "replay", "serde"] }
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index 29453e413..50bbea1c1 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.50.0"
+version = "0.51.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,4 +14,4 @@ description = "WebIDL implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
+deno_core = { version = "0.133.0", path = "../../core" }
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 187280388..04f43b7b6 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.55.0"
+version = "0.56.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,8 +14,8 @@ description = "Implementation of WebSocket API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_tls = { version = "0.37.0", path = "../tls" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_tls = { version = "0.38.0", path = "../tls" }
http = "0.2.6"
hyper = { version = "0.14.18" }
serde = { version = "1.0.136", features = ["derive"] }
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index 9b7e636aa..2ee30b07f 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.45.0"
+version = "0.46.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
@@ -14,7 +14,7 @@ description = "Implementation of WebStorage API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.132.0", path = "../../core" }
-deno_web = { version = "0.81.0", path = "../web" }
+deno_core = { version = "0.133.0", path = "../../core" }
+deno_web = { version = "0.82.0", path = "../web" }
rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.136", features = ["derive"] }