unbound-rust-mod/Cargo.toml

29 lines
722 B
TOML
Raw Normal View History

2024-08-09 15:27:40 +07:00
[package]
name = "unbound-mod"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["rlib", "cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
boxcar = "0.2.5"
ctor = { version = "0.2.8", optional = true }
2024-08-12 11:24:01 +07:00
filetime = "0.2.24"
2024-08-09 15:27:40 +07:00
ipnet = { version = "2.9.0", features = ["serde"] }
iptrie = "0.8.5"
libc = "0.2.155"
2024-08-10 07:37:04 +07:00
mnl = { version = "0.2.2", features = ["mnl-1-0-4"] }
2024-08-09 15:27:40 +07:00
nftnl = { version = "0.6.2", features = ["nftnl-1-1-2"] }
2024-08-11 00:54:48 +07:00
nix = { version = "0.29.0", features = ["poll"] }
2024-08-09 15:27:40 +07:00
radix_trie = "0.2.1"
serde = { version = "1.0.205", features = ["derive"] }
serde_json = "1.0.122"
smallvec = "1.13.2"
[features]
example = ["ctor"]
default = ["example"]