summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2021-06-19 22:37:07 +0900
committerGitHub <noreply@github.com>2021-06-19 15:37:07 +0200
commitb0c04a7941bb1bab0f135c39d484ac47dae14300 (patch)
treedf5cb64769c7a7935f182e6258e6c1692604edbf
parentfaea8720fa9e54efa124d6c185aed781e612dd2f (diff)
chore: upgrade Tokio to 1.7.1 (#11045)
-rw-r--r--Cargo.lock4
-rw-r--r--bench_util/Cargo.toml2
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--extensions/broadcast_channel/Cargo.toml2
-rw-r--r--extensions/crypto/Cargo.toml2
-rw-r--r--extensions/fetch/Cargo.toml2
-rw-r--r--extensions/timers/Cargo.toml2
-rw-r--r--extensions/webgpu/Cargo.toml2
-rw-r--r--extensions/websocket/Cargo.toml2
-rw-r--r--runtime/Cargo.toml2
-rw-r--r--test_util/Cargo.toml2
12 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b882fa43d..3b00ff938 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3643,9 +3643,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
-version = "1.7.0"
+version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c79ba603c337335df6ba6dd6afc38c38a7d5e1b0c871678439ea973cd62a118e"
+checksum = "5fb2ed024293bb19f7a5dc54fe83bf86532a44c12a2bb8ba40d64a4509395ca2"
dependencies = [
"autocfg",
"bytes",
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index 018421c4e..5e48c01f9 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -15,7 +15,7 @@ publish = true
[dependencies]
bencher = "0.1"
deno_core = { version = "0.90.0", path = "../core" }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
[[bench]]
name = "op_baseline"
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 606bec181..fce78cfc0 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -83,7 +83,7 @@ swc_ecmascript = { version = "0.36.3", features = ["codegen", "dep_graph", "pars
tempfile = "3.2.0"
termcolor = "1.1.2"
text-size = "1.1.0"
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4", "serde"] }
walkdir = "2.3.2"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 6cd16f516..c9ba4b319 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -32,4 +32,4 @@ path = "examples/http_bench_json_ops.rs"
# These dependencies are only used for the 'http_bench_*_ops' examples.
[dev-dependencies]
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
diff --git a/extensions/broadcast_channel/Cargo.toml b/extensions/broadcast_channel/Cargo.toml
index 10cc3b250..0c54444bb 100644
--- a/extensions/broadcast_channel/Cargo.toml
+++ b/extensions/broadcast_channel/Cargo.toml
@@ -16,5 +16,5 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1"
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index 94b2ad173..3454967bc 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
deno_web = { version = "0.40.0", path = "../web" }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
rand = "0.8.3"
ring = "0.16.20"
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
index 2bb58bc03..6d9eec05c 100644
--- a/extensions/fetch/Cargo.toml
+++ b/extensions/fetch/Cargo.toml
@@ -21,6 +21,6 @@ deno_web = { version = "0.40.0", path = "../web" }
http = "0.2.4"
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.125", features = ["derive"] }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
tokio-stream = "0.1.5"
tokio-util = "0.6.7"
diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml
index 6366ea553..db0ca2b11 100644
--- a/extensions/timers/Cargo.toml
+++ b/extensions/timers/Cargo.toml
@@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
[dev-dependencies]
deno_bench_util = { version = "0.3.0", path = "../../bench_util" }
diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml
index 31f6388c2..c57b044ce 100644
--- a/extensions/webgpu/Cargo.toml
+++ b/extensions/webgpu/Cargo.toml
@@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.1", features = ["trace"] }
wgpu-types = "0.8.0"
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 071d9a26a..20f347a38 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -17,7 +17,7 @@ path = "lib.rs"
deno_core = { version = "0.90.0", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
webpki = "0.21.4"
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 2c0735e79..05a17f54c 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -68,7 +68,7 @@ rustls = "0.19.0"
serde = { version = "1.0.125", features = ["derive"] }
sys-info = "0.9.0"
termcolor = "1.1.2"
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
tokio-util = { version = "0.6", features = ["io"] }
uuid = { version = "0.8.2", features = ["v4"] }
webpki = "0.21.4"
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index f81dcf8b4..ac00fdcee 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -23,7 +23,7 @@ regex = "1.4.3"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
tempfile = "3.2.0"
-tokio = { version = "1.7.0", features = ["full"] }
+tokio = { version = "1.7.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.14.0"