Skip to content

Commit

Permalink
chore: upgrade Tokio to 1.7.0 (#11008)
Browse files Browse the repository at this point in the history
  • Loading branch information
magurotuna committed Jun 16, 2021
1 parent 77ab2be commit a800705
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bench_util/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ publish = true
[dependencies]
bencher = "0.1"
deno_core = { version = "0.90.0", path = "../core" }
tokio = { version = "1.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }

[[bench]]
name = "op_baseline"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -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.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4", "serde"] }
walkdir = "2.3.2"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -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.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
2 changes: 1 addition & 1 deletion extensions/broadcast_channel/Cargo.toml
Expand Up @@ -16,5 +16,5 @@ path = "lib.rs"
[dependencies]
async-trait = "0.1"
deno_core = { version = "0.90.0", path = "../../core" }
tokio = { version = "1.4.0", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4"] }
2 changes: 1 addition & 1 deletion extensions/crypto/Cargo.toml
Expand Up @@ -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.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
rand = "0.8.3"
ring = "0.16.20"
uuid = { version = "0.8.2", features = ["v4"] }
2 changes: 1 addition & 1 deletion extensions/fetch/Cargo.toml
Expand Up @@ -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.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
tokio-stream = "0.1.5"
tokio-util = "0.6.7"
2 changes: 1 addition & 1 deletion extensions/timers/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "lib.rs"

[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }

[dev-dependencies]
deno_bench_util = { version = "0.3.0", path = "../../bench_util" }
Expand Down
2 changes: 1 addition & 1 deletion extensions/webgpu/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "lib.rs"

[dependencies]
deno_core = { version = "0.90.0", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.1", features = ["trace"] }
wgpu-types = "0.8.0"
2 changes: 1 addition & 1 deletion extensions/websocket/Cargo.toml
Expand Up @@ -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.6.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
webpki = "0.21.4"
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Expand Up @@ -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.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
tokio-util = { version = "0.6", features = ["io"] }
uuid = { version = "0.8.2", features = ["v4"] }
webpki = "0.21.4"
Expand Down
2 changes: 1 addition & 1 deletion test_util/Cargo.toml
Expand Up @@ -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.1", features = ["full"] }
tokio = { version = "1.7.0", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.14.0"

Expand Down

0 comments on commit a800705

Please sign in to comment.