diff options
Diffstat (limited to 'op_crates')
-rw-r--r-- | op_crates/console/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/crypto/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/fetch/Cargo.toml | 6 | ||||
-rw-r--r-- | op_crates/url/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/webgpu/Cargo.toml | 6 | ||||
-rw-r--r-- | op_crates/webidl/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/websocket/Cargo.toml | 6 |
8 files changed, 19 insertions, 19 deletions
diff --git a/op_crates/console/Cargo.toml b/op_crates/console/Cargo.toml index 10ad90035..8d2e9e647 100644 --- a/op_crates/console/Cargo.toml +++ b/op_crates/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.1.0" +version = "0.2.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.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml index aaaccf2f3..b0d5e857b 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.15.0" +version = "0.16.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.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } rand = "0.8.3" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 40cad8a63..f701e5a49 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.23.0" +version = "0.24.0" edition = "2018" description = "Fetch API implementation for Deno" authors = ["the Deno authors"] @@ -15,9 +15,9 @@ path = "lib.rs" [dependencies] bytes = "1.0.1" -deno_core = { version = "0.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.123", features = ["derive"] } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.4.0", features = ["full"] } tokio-stream = "0.1.5" tokio-util = "0.6.5" diff --git a/op_crates/url/Cargo.toml b/op_crates/url/Cargo.toml index ba52d412a..9fdcb12fc 100644 --- a/op_crates/url/Cargo.toml +++ b/op_crates/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.1.0" +version = "0.2.0" edition = "2018" description = "URL 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.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } idna = "0.2.1" serde = { version = "1.0.123", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 273d5073f..14626fe18 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.31.0" +version = "0.32.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.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } [dev-dependencies] futures = "0.3.12" diff --git a/op_crates/webgpu/Cargo.toml b/op_crates/webgpu/Cargo.toml index 60f6cb697..c7f5801f8 100644 --- a/op_crates/webgpu/Cargo.toml +++ b/op_crates/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.2.0" +version = "0.3.0" edition = "2018" description = "WebGPU 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.81.0", path = "../../core" } -tokio = { version = "1.3.0", features = ["full"] } +deno_core = { version = "0.82.0", path = "../../core" } +tokio = { version = "1.4.0", features = ["full"] } serde = { version = "1.0.123", features = ["derive"] } wgpu-core = { version = "0.7.0", features = ["trace"] } wgpu-types = "0.7.0" diff --git a/op_crates/webidl/Cargo.toml b/op_crates/webidl/Cargo.toml index d9d4c643c..27d9e8bdf 100644 --- a/op_crates/webidl/Cargo.toml +++ b/op_crates/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.1.0" +version = "0.2.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.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml index 57a9ddca3..fefbcd332 100644 --- a/op_crates/websocket/Cargo.toml +++ b/op_crates/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.6.0" +version = "0.7.0" edition = "2018" description = "Implementation of WebSocket API for Deno" authors = ["the Deno authors"] @@ -14,10 +14,10 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.81.0", path = "../../core" } +deno_core = { version = "0.82.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.123", features = ["derive"] } -tokio = { version = "1.3.0", features = ["full"] } +tokio = { version = "1.4.0", features = ["full"] } tokio-rustls = "0.22.0" tokio-tungstenite = "0.13.0" webpki = "0.21.4" |