mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
chore: upgrade Tokio to 1.7.1 (#11045)
This commit is contained in:
parent
faea8720fa
commit
b0c04a7941
12 changed files with 13 additions and 13 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -3643,9 +3643,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.7.0"
|
version = "1.7.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c79ba603c337335df6ba6dd6afc38c38a7d5e1b0c871678439ea973cd62a118e"
|
checksum = "5fb2ed024293bb19f7a5dc54fe83bf86532a44c12a2bb8ba40d64a4509395ca2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"autocfg",
|
"autocfg",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
|
@ -15,7 +15,7 @@ publish = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bencher = "0.1"
|
bencher = "0.1"
|
||||||
deno_core = { version = "0.90.0", path = "../core" }
|
deno_core = { version = "0.90.0", path = "../core" }
|
||||||
tokio = { version = "1.7.0", features = ["full"] }
|
tokio = { version = "1.7.1", features = ["full"] }
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "op_baseline"
|
name = "op_baseline"
|
||||||
|
|
|
@ -83,7 +83,7 @@ swc_ecmascript = { version = "0.36.3", features = ["codegen", "dep_graph", "pars
|
||||||
tempfile = "3.2.0"
|
tempfile = "3.2.0"
|
||||||
termcolor = "1.1.2"
|
termcolor = "1.1.2"
|
||||||
text-size = "1.1.0"
|
text-size = "1.1.0"
|
||||||
tokio = { version = "1.7.0", features = ["full"] }
|
tokio = { version = "1.7.1", features = ["full"] }
|
||||||
tokio-rustls = "0.22.0"
|
tokio-rustls = "0.22.0"
|
||||||
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
|
|
|
@ -32,4 +32,4 @@ path = "examples/http_bench_json_ops.rs"
|
||||||
|
|
||||||
# These dependencies are only used for the 'http_bench_*_ops' examples.
|
# These dependencies are only used for the 'http_bench_*_ops' examples.
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.7.0", features = ["full"] }
|
tokio = { version = "1.7.1", features = ["full"] }
|
||||||
|
|
|
@ -16,5 +16,5 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
deno_core = { version = "0.90.0", path = "../../core" }
|
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"] }
|
uuid = { version = "0.8.2", features = ["v4"] }
|
||||||
|
|
|
@ -16,7 +16,7 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.90.0", path = "../../core" }
|
deno_core = { version = "0.90.0", path = "../../core" }
|
||||||
deno_web = { version = "0.40.0", path = "../web" }
|
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"
|
rand = "0.8.3"
|
||||||
ring = "0.16.20"
|
ring = "0.16.20"
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "0.8.2", features = ["v4"] }
|
||||||
|
|
|
@ -21,6 +21,6 @@ deno_web = { version = "0.40.0", path = "../web" }
|
||||||
http = "0.2.4"
|
http = "0.2.4"
|
||||||
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||||
serde = { version = "1.0.125", features = ["derive"] }
|
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-stream = "0.1.5"
|
||||||
tokio-util = "0.6.7"
|
tokio-util = "0.6.7"
|
||||||
|
|
|
@ -15,7 +15,7 @@ path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.90.0", path = "../../core" }
|
deno_core = { version = "0.90.0", path = "../../core" }
|
||||||
tokio = { version = "1.7.0", features = ["full"] }
|
tokio = { version = "1.7.1", features = ["full"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
deno_bench_util = { version = "0.3.0", path = "../../bench_util" }
|
deno_bench_util = { version = "0.3.0", path = "../../bench_util" }
|
||||||
|
|
|
@ -15,7 +15,7 @@ path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { version = "0.90.0", path = "../../core" }
|
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"] }
|
serde = { version = "1.0.125", features = ["derive"] }
|
||||||
wgpu-core = { version = "0.8.1", features = ["trace"] }
|
wgpu-core = { version = "0.8.1", features = ["trace"] }
|
||||||
wgpu-types = "0.8.0"
|
wgpu-types = "0.8.0"
|
||||||
|
|
|
@ -17,7 +17,7 @@ path = "lib.rs"
|
||||||
deno_core = { version = "0.90.0", path = "../../core" }
|
deno_core = { version = "0.90.0", path = "../../core" }
|
||||||
http = "0.2.3"
|
http = "0.2.3"
|
||||||
serde = { version = "1.0.125", features = ["derive"] }
|
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-rustls = "0.22.0"
|
||||||
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
|
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
|
||||||
webpki = "0.21.4"
|
webpki = "0.21.4"
|
||||||
|
|
|
@ -68,7 +68,7 @@ rustls = "0.19.0"
|
||||||
serde = { version = "1.0.125", features = ["derive"] }
|
serde = { version = "1.0.125", features = ["derive"] }
|
||||||
sys-info = "0.9.0"
|
sys-info = "0.9.0"
|
||||||
termcolor = "1.1.2"
|
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"] }
|
tokio-util = { version = "0.6", features = ["io"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "0.8.2", features = ["v4"] }
|
||||||
webpki = "0.21.4"
|
webpki = "0.21.4"
|
||||||
|
|
|
@ -23,7 +23,7 @@ regex = "1.4.3"
|
||||||
serde = { version = "1.0.125", features = ["derive"] }
|
serde = { version = "1.0.125", features = ["derive"] }
|
||||||
serde_json = "1.0.64"
|
serde_json = "1.0.64"
|
||||||
tempfile = "3.2.0"
|
tempfile = "3.2.0"
|
||||||
tokio = { version = "1.7.0", features = ["full"] }
|
tokio = { version = "1.7.1", features = ["full"] }
|
||||||
tokio-rustls = "0.22.0"
|
tokio-rustls = "0.22.0"
|
||||||
tokio-tungstenite = "0.14.0"
|
tokio-tungstenite = "0.14.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue