aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-05-10 05:58:12 +0000
committerFuwn <[email protected]>2023-05-10 05:58:12 +0000
commita9f0d92e5f7abc7ff8de52800b88db96645c3a79 (patch)
tree4f9180b22c83c77a712227cbf8edc94df32638ff /Cargo.toml
parentdeps(windmark): remove unused regex (diff)
downloadwindmark-a9f0d92e5f7abc7ff8de52800b88db96645c3a79.tar.xz
windmark-a9f0d92e5f7abc7ff8de52800b88db96645c3a79.zip
deps(tokio): restrict tokio features
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 14b93de..f67a099 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,7 +33,7 @@ tokio-openssl = { version = "0.6.3", optional = true }
async-std-openssl = { version = "0.6.3", optional = true }
# Non-blocking I/O
-tokio = { version = "1.26.0", features = ["full"], optional = true }
+tokio = { version = "1.26.0", default-features = false, features = ["rt-multi-thread", "sync", "net", "io-util", "macros"], optional = true }
async-trait = "0.1.68"
async-std = { version = "1.12.0", features = ["attributes"], optional = true }