aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 876bb7ae6ab11fdde9065229c0be33b374157c0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rustables"
version = "0.10.1"
authors = ["lafleur@boum.org", "Simon Thoby", "Mullvad VPN", "HimbeerserverDE"]
license = "GPL-3.0-or-later"
description = "Safe abstraction for libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem"
repository = "https://gitlab.com/rustwall/rustables"
readme = "README.md"
keywords = ["nftables", "nft", "firewall", "iptables", "netfilter"]
categories = ["network-programming", "os::unix-apis", "api-bindings"]
resolver = "2"
edition = "2021"

[features]

[dependencies]
bitflags = "1.0"
thiserror = "1.0"
log = "0.4"
libc = "0.2.43"
nix = "0.23"
ipnetwork = { version = "0.20", default-features = false }
rustables-macros = { path = "macros", version = "0.1.1-alpha1" }

[dev-dependencies]
env_logger = "0.9"

[build-dependencies]
bindgen = "0.53.1"
regex = "1.5.4"