Skip to content

Commit

Permalink
build: disable unnecessary features of tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Dec 3, 2024
1 parent 67f9f51 commit 5355ceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ futures = "0.3.21"
log = "^0.4"
nom = "^7.0"
thiserror = "1"
tokio = { version = "1", features = ["time", "io-util"], optional = true }
tokio = { version = "1", default-features = false, features = ["time", "io-util"], optional = true }

[dev-dependencies]
env_logger = "^0.9"
glob = "^0.3"
criterion = "^0.3"
async-std = { version = "1.11", features = ["unstable", "attributes"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "net", "time", "macros"] }
tokio = { version = "1", default-features = false, features = ["rt", "time", "macros"] }

[[example]]
name = "send"
Expand Down

0 comments on commit 5355ceb

Please sign in to comment.