Skip to content

Commit c8fbf6d

Browse files
authored
chore: upgrade to tokio 1.3.0 (denoland#9778)
1 parent a22aadb commit c8fbf6d

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ swc_ecmascript = { version = "0.24.1", features = ["codegen", "dep_graph", "pars
7474
tempfile = "3.2.0"
7575
termcolor = "1.1.2"
7676
text-size = "1.1.0"
77-
tokio = { version = "1.2.0", features = ["full"] }
77+
tokio = { version = "1.3.0", features = ["full"] }
7878
tokio-rustls = "0.22.0"
7979
uuid = { version = "0.8.2", features = ["v4"] }
8080
walkdir = "2.3.1"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ path = "examples/http_bench_json_ops.rs"
3636

3737
# These dependencies are only used for the 'http_bench_*_ops' examples.
3838
[dev-dependencies]
39-
tokio = { version = "1.2.0", features = ["full"] }
39+
tokio = { version = "1.3.0", features = ["full"] }

op_crates/fetch/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ bytes = "1.0.1"
1818
deno_core = { version = "0.81.0", path = "../../core" }
1919
reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
2020
serde = { version = "1.0.123", features = ["derive"] }
21-
tokio = { version = "1.2.0", features = ["full"] }
21+
tokio = { version = "1.3.0", features = ["full"] }
2222
tokio-stream = "0.1.3"
2323
tokio-util = "0.6.2"

op_crates/webgpu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ path = "lib.rs"
1515

1616
[dependencies]
1717
deno_core = { version = "0.81.0", path = "../../core" }
18-
tokio = { version = "1.1.1", features = ["full"] }
18+
tokio = { version = "1.3.0", features = ["full"] }
1919
serde = { version = "1.0.123", features = ["derive"] }
2020
wgpu-core = { version = "0.7.0", features = ["trace"] }
2121
wgpu-types = "0.7.0"

op_crates/websocket/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "lib.rs"
1717
deno_core = { version = "0.81.0", path = "../../core" }
1818
http = "0.2.3"
1919
serde = { version = "1.0.123", features = ["derive"] }
20-
tokio = { version = "1.2.0", features = ["full"] }
20+
tokio = { version = "1.3.0", features = ["full"] }
2121
tokio-rustls = "0.22.0"
2222
tokio-tungstenite = "0.13.0"
2323
webpki = "0.21.4"

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ring = "0.16.20"
6060
serde = { version = "1.0.123", features = ["derive"] }
6161
sys-info = "0.8.0"
6262
termcolor = "1.1.2"
63-
tokio = { version = "1.2.0", features = ["full"] }
63+
tokio = { version = "1.3.0", features = ["full"] }
6464
tokio-rustls = "0.22.0"
6565
uuid = { version = "0.8.2", features = ["v4"] }
6666
webpki = "0.21.4"

test_util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ os_pipe = "0.9.2"
2121
regex = "1.4.3"
2222
serde = { version = "1.0.123", features = ["derive"] }
2323
tempfile = "3.2.0"
24-
tokio = { version = "1.2.0", features = ["full"] }
24+
tokio = { version = "1.3.0", features = ["full"] }
2525
tokio-rustls = "0.22.0"
2626
tokio-tungstenite = "0.13.0"
2727

0 commit comments

Comments
 (0)