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/file/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/timers/Cargo.toml | 4 | ||||
-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 | 4 | ||||
-rw-r--r-- | op_crates/webidl/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/websocket/Cargo.toml | 4 |
10 files changed, 21 insertions, 21 deletions
diff --git a/op_crates/console/Cargo.toml b/op_crates/console/Cargo.toml index 9b42a2309..a3964a1f4 100644 --- a/op_crates/console/Cargo.toml +++ b/op_crates/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.4.0" +version = "0.5.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml index 3ad60ca3d..91f60aa9c 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.18.0" +version = "0.19.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } rand = "0.8.3" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 4b29b3a88..d2ed10714 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.26.0" +version = "0.27.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.85.0", path = "../../core" } -deno_file = { version = "0.3.0", path = "../file" } +deno_core = { version = "0.86.0", path = "../../core" } +deno_file = { version = "0.4.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/op_crates/file/Cargo.toml b/op_crates/file/Cargo.toml index ff1a49f52..2338fab7c 100644 --- a/op_crates/file/Cargo.toml +++ b/op_crates/file/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_file" -version = "0.3.0" +version = "0.4.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/op_crates/timers/Cargo.toml b/op_crates/timers/Cargo.toml index dcbe90548..ead1ae00c 100644 --- a/op_crates/timers/Cargo.toml +++ b/op_crates/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.2.0" +version = "0.3.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } tokio = { version = "1.4.0", features = ["full"] } diff --git a/op_crates/url/Cargo.toml b/op_crates/url/Cargo.toml index 44394f6a5..de7a3cb0a 100644 --- a/op_crates/url/Cargo.toml +++ b/op_crates/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.4.0" +version = "0.5.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } idna = "0.2.2" percent-encoding = "2.1.0" serde = { version = "1.0.125", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 81906b7ea..5608fadbd 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.34.0" +version = "0.35.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } [dev-dependencies] futures = "0.3.13" diff --git a/op_crates/webgpu/Cargo.toml b/op_crates/webgpu/Cargo.toml index 025780263..148ddea6a 100644 --- a/op_crates/webgpu/Cargo.toml +++ b/op_crates/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.5.0" +version = "0.6.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } tokio = { version = "1.4.0", features = ["full"] } serde = { version = "1.0.125", features = ["derive"] } wgpu-core = { version = "0.7.0", features = ["trace"] } diff --git a/op_crates/webidl/Cargo.toml b/op_crates/webidl/Cargo.toml index cab02042c..90a3e2cb9 100644 --- a/op_crates/webidl/Cargo.toml +++ b/op_crates/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.4.0" +version = "0.5.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml index dd3dd3b81..516401204 100644 --- a/op_crates/websocket/Cargo.toml +++ b/op_crates/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.9.0" +version = "0.10.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.85.0", path = "../../core" } +deno_core = { version = "0.86.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.125", features = ["derive"] } tokio = { version = "1.4.0", features = ["full"] } |