summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-10-05 21:40:39 +0200
committerGitHub <noreply@github.com>2021-10-05 21:40:39 +0200
commitd67e85850688117e116bbf7054e80f30fe07afe6 (patch)
tree9a4e0049166436a6e1668cc9468bbb49c334c589 /ext
parent80aee99c9e2eba879a0981235bee740088c6fbad (diff)
chore: merge v1.14.3 into main (#12327)
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/timers/Cargo.toml12
-rw-r--r--ext/tls/Cargo.toml4
-rw-r--r--ext/url/Cargo.toml8
-rw-r--r--ext/web/Cargo.toml4
-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
15 files changed, 42 insertions, 42 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml
index 98ee277cb..3c673a939 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.13.0"
+version = "0.14.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -15,6 +15,6 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1"
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
tokio = { version = "1.10.1", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index 2bfdc2add..64be8cfef 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.19.0"
+version = "0.20.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index c723e475e..2aa55599e 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.33.0"
+version = "0.34.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,8 +14,8 @@ description = "Web Cryptography API implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_web = { version = "0.50.0", path = "../web" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_web = { version = "0.51.0", path = "../web" }
lazy_static = "1.4.0"
num-traits = "0.2.14"
rand = "0.8.4"
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 3276b0a6d..75c36657f 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.42.0"
+version = "0.43.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
bytes = "1.1.0"
data-url = "0.1.0"
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_tls = { version = "0.6.0", path = "../tls" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_tls = { version = "0.7.0", path = "../tls" }
http = "0.2.4"
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.129", features = ["derive"] }
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 6d6357562..8799cd2e0 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.6.0"
+version = "0.7.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,7 +14,7 @@ description = "Dynamic library ffi for deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
dlopen = "0.1.8"
libffi = { version = "=0.0.7", package = "deno-libffi" }
serde = { version = "1.0.129", features = ["derive"] }
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 6202ea938..872e3d6b3 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.11.0"
+version = "0.12.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
base64 = "0.13.0"
bytes = "1"
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_websocket = { version = "0.24.0", path = "../websocket" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_websocket = { version = "0.25.0", path = "../websocket" }
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
ring = "0.16.20"
serde = { version = "1.0.129", features = ["derive"] }
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index aaefdca80..8b483ed20 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.11.0"
+version = "0.12.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,8 +14,8 @@ description = "Networking for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_tls = { version = "0.6.0", path = "../tls" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_tls = { version = "0.7.0", path = "../tls" }
log = "0.4.14"
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.10.1", features = ["full"] }
diff --git a/ext/timers/Cargo.toml b/ext/timers/Cargo.toml
index 2a0f6c069..7fa688a29 100644
--- a/ext/timers/Cargo.toml
+++ b/ext/timers/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_timers"
-version = "0.17.0"
+version = "0.18.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,14 +14,14 @@ description = "Timers API implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
tokio = { version = "1.10.1", features = ["full"] }
[dev-dependencies]
-deno_bench_util = { version = "0.13.0", path = "../../bench_util" }
-deno_url = { version = "0.19.0", path = "../url" }
-deno_web = { version = "0.50.0", path = "../web" }
-deno_webidl = { version = "0.19.0", path = "../webidl" }
+deno_bench_util = { version = "0.14.0", path = "../../bench_util" }
+deno_url = { version = "0.20.0", path = "../url" }
+deno_web = { version = "0.51.0", path = "../web" }
+deno_webidl = { version = "0.20.0", path = "../webidl" }
[[bench]]
name = "timers_ops"
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index d77fce1c1..0fae17a7c 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.6.0"
+version = "0.7.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,7 +14,7 @@ description = "TLS for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
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"] }
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index 8550706ad..f0a821227 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.19.0"
+version = "0.20.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,14 +14,14 @@ description = "URL API implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
serde = { version = "1.0.129", features = ["derive"] }
serde_repr = "0.1.7"
urlpattern = "0.1.2"
[dev-dependencies]
-deno_bench_util = { version = "0.13.0", path = "../../bench_util" }
-deno_webidl = { version = "0.19.0", path = "../webidl" }
+deno_bench_util = { version = "0.14.0", path = "../../bench_util" }
+deno_webidl = { version = "0.20.0", path = "../webidl" }
[[bench]]
name = "url_ops"
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index 209fdd44c..d478df697 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.50.0"
+version = "0.51.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1.51"
base64 = "0.13.0"
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
encoding_rs = "0.8.28"
serde = "1.0.129"
tokio = { version = "1.10.1", features = ["full"] }
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml
index 9d73c2468..79924b986 100644
--- a/ext/webgpu/Cargo.toml
+++ b/ext/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.20.0"
+version = "0.21.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,7 +14,7 @@ description = "WebGPU implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.10.1", features = ["full"] }
wgpu-core = { version = "0.10.1", features = ["trace"] }
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index 862362b91..c8283c51e 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.19.0"
+version = "0.20.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,4 +14,4 @@ description = "WebIDL implementation for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
+deno_core = { version = "0.102.0", path = "../../core" }
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 84abe489d..0eec45986 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.24.0"
+version = "0.25.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,8 +14,8 @@ description = "Implementation of WebSocket API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_tls = { version = "0.6.0", path = "../tls" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_tls = { version = "0.7.0", path = "../tls" }
http = "0.2.4"
hyper = { version = "0.14.12" }
serde = { version = "1.0.129", features = ["derive"] }
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index 153f556c2..547b6d74e 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.14.0"
+version = "0.15.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
@@ -14,7 +14,7 @@ description = "Implementation of WebStorage API for Deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.101.0", path = "../../core" }
-deno_web = { version = "0.50.0", path = "../web" }
+deno_core = { version = "0.102.0", path = "../../core" }
+deno_web = { version = "0.51.0", path = "../web" }
rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.129", features = ["derive"] }