diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-05-29 20:18:24 +0900 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-05-31 16:37:35 +0200 |
commit | 475bc35646bc25d796b2638768cd5a79e3a0033e (patch) | |
tree | f08109f536723ae779101e2d20c0e094a12b5446 | |
parent | 283e7ca92bb009a950211ad0ab701288ff62c009 (diff) |
chore: upgrade Tokio to 1.6.1 (#10782)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | bench_util/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/fetch/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/timers/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/webgpu/Cargo.toml | 2 | ||||
-rw-r--r-- | extensions/websocket/Cargo.toml | 2 | ||||
-rw-r--r-- | runtime/Cargo.toml | 2 | ||||
-rw-r--r-- | test_util/Cargo.toml | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index 98fbf57f5..64185bb65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3575,9 +3575,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd3076b5c8cc18138b8f8814895c11eb4de37114a5d127bafdc5e55798ceef37" +checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975" dependencies = [ "autocfg", "bytes", diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml index f3e1140c8..302712912 100644 --- a/bench_util/Cargo.toml +++ b/bench_util/Cargo.toml @@ -15,4 +15,4 @@ publish = false [dependencies] bencher = "0.1" deno_core = { version = "0.88.0", path = "../core" } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 44976eff1..c14072508 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -73,7 +73,7 @@ swc_ecmascript = { version = "0.33.0", features = ["codegen", "dep_graph", "pars tempfile = "3.2.0" termcolor = "1.1.2" text-size = "1.1.0" -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.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 0f2968e61..2b092fe99 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -33,7 +33,7 @@ path = "examples/http_bench_json_ops.rs" # These dependencies are only used for the 'http_bench_*_ops' examples. [dev-dependencies] -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } bencher = "0.1" [[bench]] diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index 83cd4ecdb..201417816 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -21,6 +21,6 @@ deno_file = { version = "0.6.0", path = "../file" } 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.6.0", features = ["full"] } +tokio = { version = "1.6.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 d9bb23614..32cf02e86 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -15,4 +15,4 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.88.0", path = "../../core" } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index 5ada950b7..4a1c25db2 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.88.0", path = "../../core" } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.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 a5a962e54..129aeb7ca 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -17,7 +17,7 @@ path = "lib.rs" deno_core = { version = "0.88.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.125", features = ["derive"] } -tokio = { version = "1.6.0", features = ["full"] } +tokio = { version = "1.6.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 b14c926f9..c2cf00b0b 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.6.0", features = ["full"] } +tokio = { version = "1.6.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 b1750c599..68181a16e 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.6.0", features = ["full"] } +tokio = { version = "1.6.1", features = ["full"] } tokio-rustls = "0.22.0" tokio-tungstenite = "0.14.0" |