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/file/Cargo.toml | 4 | ||||
-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 |
12 files changed, 29 insertions, 29 deletions
diff --git a/extensions/broadcast_channel/Cargo.toml b/extensions/broadcast_channel/Cargo.toml index 7bc65f3a0..51905d874 100644 --- a/extensions/broadcast_channel/Cargo.toml +++ b/extensions/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.1.0" +version = "0.2.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.88.0", path = "../../core" } +deno_core = { version = "0.89.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 06db0a2d6..acc7b1781 100644 --- a/extensions/console/Cargo.toml +++ b/extensions/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.7.1" +version = "0.8.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.88.1", path = "../../core" } +deno_core = { version = "0.89.0", path = "../../core" } diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml index 3f4ea1e1a..70fa02c75 100644 --- a/extensions/crypto/Cargo.toml +++ b/extensions/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.21.1" +version = "0.22.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.88.1", path = "../../core" } -deno_web = { version = "0.38.1", path = "../web" } +deno_core = { version = "0.89.0", path = "../../core" } +deno_web = { version = "0.39.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 0ba969bc1..c01af459a 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.29.1" +version = "0.30.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.88.1", path = "../../core" } -deno_file = { version = "0.6.1", path = "../file" } +deno_core = { version = "0.89.0", path = "../../core" } +deno_file = { version = "0.7.0", 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 f9f17e427..da70cf1b8 100644 --- a/extensions/file/Cargo.toml +++ b/extensions/file/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_file" -version = "0.6.1" +version = "0.7.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.88.1", path = "../../core" } +deno_core = { version = "0.89.0", path = "../../core" } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml index 6b68a02e9..d45b6c789 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.5.1" +version = "0.6.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.88.1", path = "../../core" } +deno_core = { version = "0.89.0", path = "../../core" } tokio = { version = "1.6.1", features = ["full"] } [dev-dependencies] -deno_bench_util = { version = "0.1.0", path = "../../bench_util" } +deno_bench_util = { version = "0.2.0", path = "../../bench_util" } [[bench]] name = "timers_ops" diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml index f87931ece..f374588d7 100644 --- a/extensions/url/Cargo.toml +++ b/extensions/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.7.1" +version = "0.8.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.88.1", path = "../../core" } +deno_core = { version = "0.89.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.1.0", path = "../../bench_util" } +deno_bench_util = { version = "0.2.0", path = "../../bench_util" } [[bench]] name = "url_ops" diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml index 3df897dc7..a914d1b48 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.38.1" +version = "0.39.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.88.1", path = "../../core" } +deno_core = { version = "0.89.0", path = "../../core" } encoding_rs = "0.8.28" serde = "1.0" diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index a1609fea8..f88db987d 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.8.1" +version = "0.9.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.88.1", path = "../../core" } +deno_core = { version = "0.89.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 f2842c5c2..50ca46584 100644 --- a/extensions/webidl/Cargo.toml +++ b/extensions/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.7.1" +version = "0.8.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.88.1", path = "../../core" } +deno_core = { version = "0.89.0", path = "../../core" } diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml index 7e2a82b99..62a1e7a0f 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.12.1" +version = "0.13.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.88.1", path = "../../core" } +deno_core = { version = "0.89.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 86018e97b..7cb1af044 100644 --- a/extensions/webstorage/Cargo.toml +++ b/extensions/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.2.1" +version = "0.3.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.88.1", path = "../../core" } -deno_web = { version = "0.38.1", path = "../web" } +deno_core = { version = "0.89.0", path = "../../core" } +deno_web = { version = "0.39.0", path = "../web" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.125", features = ["derive"] } |