diff options
| author | Fuwn <[email protected]> | 2023-05-10 05:58:12 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-10 05:58:12 +0000 |
| commit | 242d2027dfdedf5331361c84dd17a27f2f5542a3 (patch) | |
| tree | 4f9180b22c83c77a712227cbf8edc94df32638ff | |
| parent | deps(windmark): remove unused regex (diff) | |
| download | windmark-242d2027dfdedf5331361c84dd17a27f2f5542a3.tar.xz windmark-242d2027dfdedf5331361c84dd17a27f2f5542a3.zip | |
deps(tokio): restrict tokio features
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |