summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-07-06 09:53:36 -0400
committerGitHub <noreply@github.com>2020-07-06 09:53:36 -0400
commit8788553247c9e819721193733137763e425593af (patch)
tree8f0040c642c5c4ca6dd4a9f8dab6cdf5e3dc4eff
parent6b78729ba8c21f6b3ba5a4621fc363d8772e177f (diff)
chore: Only use one set of tokio features (#6655)
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--test_util/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 69eb6fa86..11665023d 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -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"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index a0d4660f7..6b73cc02a 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -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"] }
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml
index b82d61b43..2d0ecc3ae 100644
--- a/test_util/Cargo.toml
+++ b/test_util/Cargo.toml
@@ -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"