summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock10
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--op_crates/crypto/Cargo.toml4
-rw-r--r--op_crates/fetch/Cargo.toml4
-rw-r--r--op_crates/web/Cargo.toml4
-rw-r--r--runtime/Cargo.toml18
7 files changed, 26 insertions, 26 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 06d1074ea..d8cdcf7e7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -457,7 +457,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.74.0"
+version = "0.75.0"
dependencies = [
"anyhow",
"futures",
@@ -476,7 +476,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"deno_core",
"rand",
@@ -500,7 +500,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.17.0"
+version = "0.18.0"
dependencies = [
"deno_core",
"reqwest",
@@ -527,7 +527,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"atty",
"deno_core",
@@ -569,7 +569,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.25.0"
+version = "0.26.0"
dependencies = [
"deno_core",
"futures",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index f4f3e2340..5b8f954af 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -20,9 +20,9 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.74.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.17.0" }
-deno_web = { path = "../op_crates/web", version = "0.25.0" }
+deno_core = { path = "../core", version = "0.75.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
+deno_web = { path = "../op_crates/web", version = "0.26.0" }
regex = "1.3.9"
serde = { version = "1.0.116", features = ["derive"] }
@@ -31,10 +31,10 @@ winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_core = { path = "../core", version = "0.74.0" }
+deno_core = { path = "../core", version = "0.75.0" }
deno_doc = "0.1.19"
deno_lint = "0.2.14"
-deno_runtime = { path = "../runtime", version = "0.4.0" }
+deno_runtime = { path = "../runtime", version = "0.5.0" }
atty = "0.2.14"
base64 = "0.12.3"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 61884965d..1c7d32d13 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
-version = "0.74.0"
+version = "0.75.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml
index a18b3a566..a08e30d56 100644
--- a/op_crates/crypto/Cargo.toml
+++ b/op_crates/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.8.0"
+version = "0.9.0"
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.74.0", path = "../../core" }
+deno_core = { version = "0.75.0", path = "../../core" }
rand = "0.7.3"
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml
index ecef2f5fc..2890bb349 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.17.0"
+version = "0.18.0"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.74.0", path = "../../core" }
+deno_core = { version = "0.75.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }
diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml
index f12d7d0ff..7134a5fd6 100644
--- a/op_crates/web/Cargo.toml
+++ b/op_crates/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.25.0"
+version = "0.26.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.74.0", path = "../../core" }
+deno_core = { version = "0.75.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 6fe84c477..8632019b6 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.4.0"
+version = "0.5.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -18,20 +18,20 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.74.0" }
-deno_crypto = { path = "../op_crates/crypto", version = "0.8.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.17.0" }
-deno_web = { path = "../op_crates/web", version = "0.25.0" }
+deno_core = { path = "../core", version = "0.75.0" }
+deno_crypto = { path = "../op_crates/crypto", version = "0.9.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
+deno_web = { path = "../op_crates/web", version = "0.26.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_core = { path = "../core", version = "0.74.0" }
-deno_crypto = { path = "../op_crates/crypto", version = "0.8.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.17.0" }
-deno_web = { path = "../op_crates/web", version = "0.25.0" }
+deno_core = { path = "../core", version = "0.75.0" }
+deno_crypto = { path = "../op_crates/crypto", version = "0.9.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
+deno_web = { path = "../op_crates/web", version = "0.26.0" }
atty = "0.2.14"
dlopen = "0.1.8"