Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@ repository = "https://github.com/rust-netlink/netlink-sys"
description = "netlink sockets, with optional integration with tokio"

[dependencies]
bytes = "1.0"
libc = "0.2.66"
bytes = "1.8"
libc = "0.2.164"
log = "0.4.8"

[dependencies.futures]
optional = true
version = "0.3.1"
version = "0.3.31"

[dependencies.tokio]
optional = true
version = "1.0.1"
version = "1.41.1"
default-features = false
# We only depend on tokio for PollEvented
features = ["net"]

[dependencies.mio]
optional = true
version = "0.8"
version = "1.0"
features = ["os-poll", "os-ext"]

[dependencies.async-io]
optional = true
version = "1.3"
version = "1.13"

[features]
default = []
Expand All @@ -51,7 +51,7 @@ default-features = false
features = ["net", "macros", "rt-multi-thread"]

[dev-dependencies.async-std]
version = "1.9.0"
version = "1.13"
features = ["attributes"]


Expand Down