-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
34 lines (31 loc) · 948 Bytes
/
Cargo.toml
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
31
32
33
34
[package]
name = "nftables"
version = "0.5.0"
authors = ["Jasper Wiegratz <[email protected]>", "Jan Romann <[email protected]>"]
edition = "2021"
rust-version = "1.65"
description = "Safe abstraction for nftables JSON API. It can be used to create nftables rulesets in Rust and parse existing nftables rulesets from JSON."
repository = "https://github.com/namib-project/nftables-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["nftables", "netfilter", "firewall"]
categories = ["os", "network-programming"]
exclude = [
".devcontainer/*",
".github/*",
"cliff.toml",
"release-plz.toml",
]
[dependencies]
serde = { version = "1.0.216", features = ["derive"] }
serde_json = { version = "1.0.133" }
serde_path_to_error = "0.1"
strum = "0.26.3"
strum_macros = "0.26.4"
thiserror = "2.0.6"
[dev-dependencies]
datatest-stable = "0.2.10"
serial_test = "3.2.0"
[[test]]
name = "deserialize"
harness = false