mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: upgrade Tokio to 1.6.1 (#10782)
This commit is contained in:
parent
d95056c10b
commit
5f92f35bee
10 changed files with 11 additions and 11 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -3586,9 +3586,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",
|
||||
|
|
|
@ -15,7 +15,7 @@ publish = true
|
|||
[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"] }
|
||||
|
||||
[[bench]]
|
||||
name = "op_baseline"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -33,4 +33,4 @@ 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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"] }
|
||||
|
||||
[dev-dependencies]
|
||||
deno_bench_util = { version = "0.1.0", path = "../../bench_util" }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -70,7 +70,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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue