summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-05-11 23:14:24 +0200
committerGitHub <noreply@github.com>2021-05-11 23:14:24 +0200
commitde706961dc4c3eca0cb27155089642336348c910 (patch)
tree1eb192568984ccf2f3f6eb69e672afa0b13b06fa /extensions
parent8d88a83b882ad3644d4a803fb80919cc5e0f681a (diff)
chore: release crates (#10596)
Diffstat (limited to 'extensions')
-rw-r--r--extensions/console/Cargo.toml4
-rw-r--r--extensions/crypto/Cargo.toml4
-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.toml2
11 files changed, 22 insertions, 22 deletions
diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml
index a3964a1f4..64f7b3ed4 100644
--- a/extensions/console/Cargo.toml
+++ b/extensions/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.5.0"
+version = "0.6.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index 91f60aa9c..1fe5c7967 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.19.0"
+version = "0.20.0"
edition = "2018"
description = "Web Cryptography API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
rand = "0.8.3"
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
index d2ed10714..b4ac68924 100644
--- a/extensions/fetch/Cargo.toml
+++ b/extensions/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.27.0"
+version = "0.28.0"
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.86.0", path = "../../core" }
-deno_file = { version = "0.4.0", path = "../file" }
+deno_core = { version = "0.87.0", path = "../../core" }
+deno_file = { version = "0.5.0", path = "../file" }
http = "0.2.3"
reqwest = { version = "0.11.2", 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 2338fab7c..594e99456 100644
--- a/extensions/file/Cargo.toml
+++ b/extensions/file/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_file"
-version = "0.4.0"
+version = "0.5.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml
index ead1ae00c..567e5a28d 100644
--- a/extensions/timers/Cargo.toml
+++ b/extensions/timers/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_timers"
-version = "0.3.0"
+version = "0.4.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
tokio = { version = "1.4.0", features = ["full"] }
diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml
index de7a3cb0a..b6849ab19 100644
--- a/extensions/url/Cargo.toml
+++ b/extensions/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.5.0"
+version = "0.6.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
idna = "0.2.2"
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 5608fadbd..aeef8ca80 100644
--- a/extensions/web/Cargo.toml
+++ b/extensions/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.35.0"
+version = "0.36.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
[dev-dependencies]
futures = "0.3.13"
diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml
index 8a18b8d1a..bfd688ec9 100644
--- a/extensions/webgpu/Cargo.toml
+++ b/extensions/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.6.0"
+version = "0.7.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
tokio = { version = "1.4.0", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.0", features = ["trace"] }
diff --git a/extensions/webidl/Cargo.toml b/extensions/webidl/Cargo.toml
index 90a3e2cb9..718d637e7 100644
--- a/extensions/webidl/Cargo.toml
+++ b/extensions/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.5.0"
+version = "0.6.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 516401204..818271a74 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.10.0"
+version = "0.11.0"
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.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
tokio = { version = "1.4.0", features = ["full"] }
diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml
index acfaf6a16..918c41ad8 100644
--- a/extensions/webstorage/Cargo.toml
+++ b/extensions/webstorage/Cargo.toml
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.86.0", path = "../../core" }
+deno_core = { version = "0.87.0", path = "../../core" }
rusqlite = { version = "0.25.0", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.125", features = ["derive"] }