aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: eedf5f4366daa56caef3ad3292103a9feed59dc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "rsdsl_netlinklib"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures = { version = "0.3.11", default-features = false, features = ["std"] }
libc = "0.2.150"
netlink-packet-route = "^0.17"
rtnetlink = { version = "0.13.1" }
thiserror = "1.0"
tokio = { version = "1.0", features = ["time"] }

[features]
blocking = ["tokio/rt-multi-thread"]