diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/broadcast_channel/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/console/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/crypto/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/fetch/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/timers/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/url/Cargo.toml | 6 | ||||
-rw-r--r-- | extensions/web/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/webgpu/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/webidl/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/websocket/Cargo.toml | 4 | ||||
-rw-r--r-- | extensions/webstorage/Cargo.toml | 6 |
11 files changed, 27 insertions, 27 deletions
diff --git a/extensions/broadcast_channel/Cargo.toml b/extensions/broadcast_channel/Cargo.toml index 51905d874..49b036ef2 100644 --- a/extensions/broadcast_channel/Cargo.toml +++ b/extensions/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.2.0" +version = "0.3.0" edition = "2018" description = "Implementation of BroadcastChannel API for Deno" authors = ["the Deno authors"] @@ -15,6 +15,6 @@ path = "lib.rs" [dependencies] async-trait = "0.1" -deno_core = { version = "0.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } tokio = { version = "1.4.0", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml index acc7b1781..d9dedd211 100644 --- a/extensions/console/Cargo.toml +++ b/extensions/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.8.0" +version = "0.9.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.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml index 70fa02c75..88a4c0388 100644 --- a/extensions/crypto/Cargo.toml +++ b/extensions/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.22.0" +version = "0.23.0" edition = "2018" description = "Web Cryptography API implementation for Deno" authors = ["the Deno authors"] @@ -14,8 +14,8 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.89.0", path = "../../core" } -deno_web = { version = "0.39.0", path = "../web" } +deno_core = { version = "0.90.0", path = "../../core" } +deno_web = { version = "0.40.0", path = "../web" } tokio = { version = "1.6.1", features = ["full"] } rand = "0.8.3" ring = "0.16.20" diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index 27ab2e05d..0e8347f56 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.30.0" +version = "0.31.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.89.0", path = "../../core" } -deno_web = { version = "0.39.0", path = "../web" } +deno_core = { version = "0.90.0", path = "../../core" } +deno_web = { version = "0.40.0", 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"] } diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml index d45b6c789..18f3cc615 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.6.0" +version = "0.7.0" edition = "2018" description = "Timers API implementation for Deno" authors = ["the Deno authors"] @@ -14,11 +14,11 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } tokio = { version = "1.6.1", features = ["full"] } [dev-dependencies] -deno_bench_util = { version = "0.2.0", path = "../../bench_util" } +deno_bench_util = { version = "0.3.0", path = "../../bench_util" } [[bench]] name = "timers_ops" diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml index f374588d7..17ba8c7f1 100644 --- a/extensions/url/Cargo.toml +++ b/extensions/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.8.0" +version = "0.9.0" edition = "2018" description = "URL API implementation for Deno" authors = ["the Deno authors"] @@ -14,13 +14,13 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } idna = "0.2.3" percent-encoding = "2.1.0" serde = { version = "1.0.125", features = ["derive"] } [dev-dependencies] -deno_bench_util = { version = "0.2.0", path = "../../bench_util" } +deno_bench_util = { version = "0.3.0", path = "../../bench_util" } [[bench]] name = "url_ops" diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml index 05a0f17f2..1d727b232 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.39.0" +version = "0.40.0" edition = "2018" description = "Collection of Web APIs" authors = ["the Deno authors"] @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] base64 = "0.13.0" -deno_core = { version = "0.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } encoding_rs = "0.8.28" serde = "1.0" uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index f88db987d..70ff6d75d 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.9.0" +version = "0.10.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.89.0", path = "../../core" } +deno_core = { version = "0.90.0", 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 50ca46584..d5b7d02d3 100644 --- a/extensions/webidl/Cargo.toml +++ b/extensions/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.8.0" +version = "0.9.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.89.0", path = "../../core" } +deno_core = { version = "0.90.0", path = "../../core" } diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml index 62a1e7a0f..9dca22146 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.13.0" +version = "0.14.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.89.0", path = "../../core" } +deno_core = { version = "0.90.0", 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 7cb1af044..ed5689f78 100644 --- a/extensions/webstorage/Cargo.toml +++ b/extensions/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.3.0" +version = "0.4.0" edition = "2018" description = "Implementation of WebStorage 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.89.0", path = "../../core" } -deno_web = { version = "0.39.0", path = "../web" } +deno_core = { version = "0.90.0", path = "../../core" } +deno_web = { version = "0.40.0", path = "../web" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.125", features = ["derive"] } |