diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-03-09 20:12:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 20:12:13 +0100 |
commit | cdc0b6958d3cb33829355885488b730bccde427c (patch) | |
tree | 0a9051ec8c4388cf5a71047c92d98de451b410af /op_crates | |
parent | 1621d7862393e4bcd6a1ecb46544a02981fd3411 (diff) |
chore: release crates (#9731)
Diffstat (limited to 'op_crates')
-rw-r--r-- | op_crates/crypto/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/webgpu/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/websocket/Cargo.toml | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml index 59db37159..3d5af740e 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.14.0" +version = "0.14.1" edition = "2018" description = "Collection of WebCrypto APIs" authors = ["the Deno authors"] @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.80.1", path = "../../core" } +deno_core = { version = "0.80.2", path = "../../core" } rand = "0.8.3" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 991c6bd51..9491b87a3 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.22.2" +version = "0.22.3" edition = "2018" description = "provides fetch Web API to deno_core" authors = ["the Deno authors"] @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] bytes = "1.0.1" -deno_core = { version = "0.80.1", path = "../../core" } +deno_core = { version = "0.80.2", 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.2.0", features = ["full"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 576b75ee6..d1d37c216 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.30.2" +version = "0.30.3" 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.80.1", path = "../../core" } +deno_core = { version = "0.80.2", path = "../../core" } serde = { version = "1.0.123", features = ["derive"] } [dev-dependencies] diff --git a/op_crates/webgpu/Cargo.toml b/op_crates/webgpu/Cargo.toml index 2764ced07..f420106d3 100644 --- a/op_crates/webgpu/Cargo.toml +++ b/op_crates/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.1.0" +version = "0.1.1" edition = "2018" description = "provides webgpu Web API to deno_core" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.80.1", path = "../../core" } +deno_core = { version = "0.80.2", path = "../../core" } tokio = { version = "1.1.1", features = ["full"] } serde = { version = "1.0.123", features = ["derive"] } wgpu-core = { version = "0.7.0", features = ["trace"] } diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml index 7d4d605e6..5e9ea05e3 100644 --- a/op_crates/websocket/Cargo.toml +++ b/op_crates/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.5.2" +version = "0.5.3" 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.80.1", path = "../../core" } +deno_core = { version = "0.80.2", path = "../../core" } http = "0.2.3" serde = { version = "1.0.123", features = ["derive"] } tokio = { version = "1.2.0", features = ["full"] } |