Skip to content

Commit

Permalink
Remove tokio from dependencies
Browse files Browse the repository at this point in the history
It is only used in tests and examples; move `time` feature to dev-dependencies; `io-util` feature is unused.
  • Loading branch information
hack3ric authored and cathay4t committed Dec 31, 2024
1 parent 4fce1b7 commit ce207e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ description = "async netlink protocol"
bytes = "1.0"
log = "0.4.8"
futures = "0.3"
tokio = { version = "1.0", default-features = false, features = ["io-util","time"] }
netlink-packet-core = "0.7.0"
netlink-sys = { default-features = false, version = "0.8.4" }
thiserror = "2"
Expand All @@ -27,7 +26,7 @@ smol_socket = ["netlink-sys/smol_socket"]

[dev-dependencies]
env_logger = "0.8.2"
tokio = { version = "1.0.1", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.0.1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
netlink-packet-route = { version = "0.18.1" }
netlink-packet-audit = { version = "0.5.0" }
async-std = {version = "1.9.0", features = ["attributes"]}
Expand Down

0 comments on commit ce207e4

Please sign in to comment.