summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2021-05-31 17:39:24 +0000
committerBert Belder <bertbelder@gmail.com>2021-05-31 20:20:42 +0000
commit1567c1013cc8ff12cf039137792da66a1d0015b5 (patch)
tree68360ed495f2740850bddc0a97e4e8008a57740a /extensions
parent2c1f37b4a97922cfcec9393e2146c42d3d3b6e2e (diff)
v1.10.3
Diffstat (limited to 'extensions')
-rw-r--r--extensions/console/Cargo.toml4
-rw-r--r--extensions/crypto/Cargo.toml5
-rw-r--r--extensions/fetch/Cargo.toml6
-rw-r--r--extensions/file/Cargo.toml4
-rw-r--r--extensions/timers/Cargo.toml4
-rw-r--r--extensions/url/Cargo.toml4
-rw-r--r--extensions/web/Cargo.toml4
-rw-r--r--extensions/webgpu/Cargo.toml4
-rw-r--r--extensions/webidl/Cargo.toml4
-rw-r--r--extensions/websocket/Cargo.toml4
-rw-r--r--extensions/webstorage/Cargo.toml4
11 files changed, 23 insertions, 24 deletions
diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml
index 189d56500..06db0a2d6 100644
--- a/extensions/console/Cargo.toml
+++ b/extensions/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "Implementation of Console API for Deno"
authors = ["the Deno authors"]
@@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index 5295aa9f1..fa0a6634e 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.21.0"
+version = "0.21.1"
edition = "2018"
description = "Web Cryptography API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,6 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
rand = "0.8.3"
-
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
index 201417816..0ba969bc1 100644
--- a/extensions/fetch/Cargo.toml
+++ b/extensions/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.29.0"
+version = "0.29.1"
edition = "2018"
description = "Fetch API implementation for Deno"
authors = ["the Deno authors"]
@@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
bytes = "1.0.1"
data-url = "0.1.0"
-deno_core = { version = "0.88.0", path = "../../core" }
-deno_file = { version = "0.6.0", path = "../file" }
+deno_core = { version = "0.88.1", path = "../../core" }
+deno_file = { version = "0.6.1", path = "../file" }
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"] }
diff --git a/extensions/file/Cargo.toml b/extensions/file/Cargo.toml
index cab6f5666..f9f17e427 100644
--- a/extensions/file/Cargo.toml
+++ b/extensions/file/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_file"
-version = "0.6.0"
+version = "0.6.1"
edition = "2018"
description = "File API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml
index 32cf02e86..afdbf2e4c 100644
--- a/extensions/timers/Cargo.toml
+++ b/extensions/timers/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_timers"
-version = "0.5.0"
+version = "0.5.1"
edition = "2018"
description = "Timers API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml
index 70a880e0d..57f82bba8 100644
--- a/extensions/url/Cargo.toml
+++ b/extensions/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "URL API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
idna = "0.2.3"
percent-encoding = "2.1.0"
serde = { version = "1.0.125", features = ["derive"] }
diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml
index e8a6f480e..1d0cd5411 100644
--- a/extensions/web/Cargo.toml
+++ b/extensions/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.38.0"
+version = "0.38.1"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
[dev-dependencies]
futures = "0.3.15"
diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml
index 4a1c25db2..a1609fea8 100644
--- a/extensions/webgpu/Cargo.toml
+++ b/extensions/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.8.0"
+version = "0.8.1"
edition = "2018"
description = "WebGPU implementation for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.1", features = ["trace"] }
diff --git a/extensions/webidl/Cargo.toml b/extensions/webidl/Cargo.toml
index ad6b2d57b..f2842c5c2 100644
--- a/extensions/webidl/Cargo.toml
+++ b/extensions/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "WebIDL implementation for Deno"
authors = ["the Deno authors"]
@@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 129aeb7ca..7e2a82b99 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.12.0"
+version = "0.12.1"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
tokio = { version = "1.6.1", features = ["full"] }
diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml
index 506014b17..b72970bbd 100644
--- a/extensions/webstorage/Cargo.toml
+++ b/extensions/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.2.0"
+version = "0.2.1"
edition = "2018"
description = "Implementation of WebStorage API for Deno"
authors = ["the Deno authors"]
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.125", features = ["derive"] }