0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

chore: Only use one set of tokio features (#6655)

This commit is contained in:
Ryan Dahl 2020-07-06 09:53:36 -04:00 committed by GitHub
parent 6b78729ba8
commit 8788553247
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ sys-info = "0.7.0"
sourcemap = "6.0.0"
tempfile = "3.1.0"
termcolor = "1.1.0"
tokio = { version = "0.2.21", features = ["rt-core", "tcp", "udp", "uds", "process", "fs", "blocking", "sync", "io-std", "macros", "time"] }
tokio = { version = "0.2.21", features = ["full"] }
tokio-rustls = "0.13.1"
url = "2.1.1"
utime = "0.3.0"

View file

@ -30,4 +30,4 @@ path = "examples/http_bench.rs"
# These dependendencies are only used for deno_core_http_bench.
[dev-dependencies]
derive_deref = "1.1.0"
tokio = { version = "0.2.21", features = ["rt-core", "tcp"] }
tokio = { version = "0.2.21", features = ["full"] }

View file

@ -10,7 +10,7 @@ name = "test_server"
path = "src/test_server.rs"
[dependencies]
tokio = { version = "0.2.21", features = ["rt-core", "tcp", "udp", "uds", "process", "fs", "blocking", "sync", "io-std", "macros", "time"] }
tokio = { version = "0.2.21", features = ["full"] }
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
bytes = "0.5.5"
lazy_static = "1.4.0"