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:
parent
6b78729ba8
commit
8788553247
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue