summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-03-20 11:51:27 -0400
committerGitHub <noreply@github.com>2021-03-20 11:51:27 -0400
commit0d26a82ea9169c013e9b0f29c1ec418b28e273cf (patch)
tree9c179837885ec4d241385552d35a3c7963116a41
parent0f9c929b3a7135667e7f1f8de3ae1195b59fb2e3 (diff)
upgrade: tokio 1.4.0 (#9842)
-rw-r--r--Cargo.lock12
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--op_crates/fetch/Cargo.toml4
-rw-r--r--runtime/Cargo.toml2
-rw-r--r--test_util/Cargo.toml2
6 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1686c6d0c..6904ef920 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3414,9 +3414,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
-version = "1.3.0"
+version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda"
+checksum = "134af885d758d645f0f0505c9a8b3f9bf8a348fd822e112ab5248138348f1722"
dependencies = [
"autocfg",
"bytes",
@@ -3456,9 +3456,9 @@ dependencies = [
[[package]]
name = "tokio-stream"
-version = "0.1.3"
+version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1981ad97df782ab506a1f43bf82c967326960d278acf3bf8279809648c3ff3ea"
+checksum = "e177a5d8c3bf36de9ebe6d58537d8879e964332f93fb3339e43f618c81361af0"
dependencies = [
"futures-core",
"pin-project-lite",
@@ -3493,9 +3493,9 @@ dependencies = [
[[package]]
name = "tokio-util"
-version = "0.6.3"
+version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebb7cb2f00c5ae8df755b252306272cd1790d39728363936e01827e11f0b017b"
+checksum = "5143d049e85af7fbc36f5454d990e62c2df705b3589f123b71f441b6b59f443f"
dependencies = [
"bytes",
"futures-core",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 4c556fe42..2174fe619 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -74,7 +74,7 @@ swc_ecmascript = { version = "0.24.1", features = ["codegen", "dep_graph", "pars
tempfile = "3.2.0"
termcolor = "1.1.2"
text-size = "1.1.0"
-tokio = { version = "1.3.0", features = ["full"] }
+tokio = { version = "1.4.0", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4"] }
walkdir = "2.3.1"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index d3b70e905..0b032f33f 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -36,4 +36,4 @@ path = "examples/http_bench_json_ops.rs"
# These dependencies are only used for the 'http_bench_*_ops' examples.
[dev-dependencies]
-tokio = { version = "1.3.0", features = ["full"] }
+tokio = { version = "1.4.0", features = ["full"] }
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml
index 32207c360..40cad8a63 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/Cargo.toml
@@ -19,5 +19,5 @@ deno_core = { version = "0.81.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-stream = "0.1.3"
-tokio-util = "0.6.2"
+tokio-stream = "0.1.5"
+tokio-util = "0.6.5"
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index cd599c527..e81ee42be 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -60,7 +60,7 @@ ring = "0.16.20"
serde = { version = "1.0.123", features = ["derive"] }
sys-info = "0.8.0"
termcolor = "1.1.2"
-tokio = { version = "1.3.0", features = ["full"] }
+tokio = { version = "1.4.0", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4"] }
webpki = "0.21.4"
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index e23fe5173..4af4d7f9f 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -21,7 +21,7 @@ os_pipe = "0.9.2"
regex = "1.4.3"
serde = { version = "1.0.123", features = ["derive"] }
tempfile = "3.2.0"
-tokio = { version = "1.3.0", features = ["full"] }
+tokio = { version = "1.4.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.13.0"