Skip to content

Commit 0a04371

Browse files
committed
chore: update tokio
1 parent d42c05d commit 0a04371

File tree

12 files changed

+703
-83
lines changed

12 files changed

+703
-83
lines changed

Cargo.lock

Lines changed: 679 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ winres = "0.1.11"
2020
clap = { version = "3.0.0-beta.2" }
2121
toml = { version = "0.5.6", features = ["preserve_order"] }
2222
serde = "1"
23+
serde_json = "1"
2324
serde_derive = "1"
2425
deno_core = { path = "./vendor/deno/core" }
2526
deno_runtime = { path = "./vendor/deno/runtime" }
@@ -41,7 +42,7 @@ hmac = "0.10.1"
4142
pbkdf2 = { version = "0.7.3", features=["parallel"], default-features = false }
4243
hex = "0.4.3"
4344
futures = "0.3.12"
44-
tokio = { version = "=1.7.1", features = ["full"] }
45+
tokio = { version = "=1.8.1", features = ["full"] }
4546
lazy_static = "1.4.0"
4647
atty = "0.2.14"
4748
termcolor = "1.1.2"
@@ -58,6 +59,18 @@ reqwest = { version = "0.11", features = ["blocking", "json", "rustls"] }
5859
swc_common = { version = "0.10.20", features = ["sourcemap"] }
5960
bollard = "0.11.0"
6061
ctrlc = "3.1.9"
62+
rocket = "0.4.4"
63+
crossterm = "0.20.0"
64+
65+
[dependencies.tui]
66+
version = "0.15.0"
67+
default-features = false
68+
features = ["crossterm"]
69+
70+
[dependencies.rocket_contrib]
71+
version = "*"
72+
default-features = false
73+
features = ["json"]
6174

6275
[target.'cfg(windows)'.dependencies]
6376
fwdansi = "1.1.0"

vendor/deno/bench_util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish = true
1515
[dependencies]
1616
bencher = "0.1"
1717
deno_core = { version = "0.89.0", path = "../core" }
18-
tokio = { version = "=1.7.1", features = ["full"] }
18+
tokio = { version = "=1.8.1", features = ["full"] }
1919

2020
[[bench]]
2121
name = "op_baseline"

vendor/deno/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ swc_ecmascript = { version = "0.36.0", features = ["codegen", "dep_graph", "pars
7979
tempfile = "3.2.0"
8080
termcolor = "1.1.2"
8181
text-size = "1.1.0"
82-
tokio = { version = "=1.7.1", features = ["full"] }
82+
tokio = { version = "=1.8.1", features = ["full"] }
8383
tokio-rustls = "0.22.0"
8484
uuid = { version = "0.8.2", features = ["v4", "serde"] }
8585
walkdir = "2.3.2"

vendor/deno/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ path = "examples/http_bench_json_ops.rs"
3232

3333
# These dependencies are only used for the 'http_bench_*_ops' examples.
3434
[dev-dependencies]
35-
tokio = { version = "=1.7.1", features = ["full"] }
35+
tokio = { version = "=1.8.1", features = ["full"] }

vendor/deno/extensions/broadcast_channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ path = "lib.rs"
1616
[dependencies]
1717
async-trait = "0.1"
1818
deno_core = { version = "0.89.0", path = "../../core" }
19-
tokio = { version = "=1.7.1", features = ["full"] }
19+
tokio = { version = "=1.8.1", features = ["full"] }
2020
uuid = { version = "0.8.2", features = ["v4"] }

vendor/deno/extensions/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ path = "lib.rs"
1616
[dependencies]
1717
deno_core = { version = "0.89.0", path = "../../core" }
1818
deno_web = { version = "0.39.0", path = "../web" }
19-
tokio = { version = "=1.7.1", features = ["full"] }
19+
tokio = { version = "=1.8.1", features = ["full"] }
2020
rand = "0.8.3"
2121
ring = "0.16.20"
2222
uuid = { version = "0.8.2", features = ["v4"] }

vendor/deno/extensions/fetch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ deno_file = { version = "0.7.0", path = "../file" }
2121
http = "0.2.4"
2222
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
2323
serde = { version = "1.0.125", features = ["derive"] }
24-
tokio = { version = "=1.7.1", features = ["full"] }
24+
tokio = { version = "=1.8.1", features = ["full"] }
2525
tokio-stream = "0.1.5"
2626
tokio-util = "0.6.7"

vendor/deno/extensions/timers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ path = "lib.rs"
1515

1616
[dependencies]
1717
deno_core = { version = "0.89.0", path = "../../core" }
18-
tokio = { version = "=1.7.1", features = ["full"] }
18+
tokio = { version = "=1.8.1", features = ["full"] }
1919

2020
[dev-dependencies]
2121
deno_bench_util = { version = "0.2.0", path = "../../bench_util" }

vendor/deno/extensions/websocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "lib.rs"
1717
deno_core = { version = "0.89.0", path = "../../core" }
1818
http = "0.2.3"
1919
serde = { version = "1.0.125", features = ["derive"] }
20-
tokio = { version = "=1.7.1", features = ["full"] }
20+
tokio = { version = "=1.8.1", features = ["full"] }
2121
tokio-rustls = "0.22.0"
2222
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
2323
webpki = "0.21.4"

0 commit comments

Comments
 (0)