-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (71 loc) · 1.98 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (71 loc) · 1.98 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[workspace]
resolver = "3"
members = [
"crates/kidobo-adapters",
"crates/kidobo-app",
"crates/kidobo-core",
]
[workspace.package]
edition = "2024"
license = "MIT"
rust-version = "1.97.1"
[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
criterion = "0.8"
ctrlc = "3.4"
env_logger = "0.11"
fs2 = "0.4"
kidobo-adapters = { path = "crates/kidobo-adapters" }
kidobo-app = { path = "crates/kidobo-app" }
kidobo-core = { path = "crates/kidobo-core" }
log = "0.4"
nix = { version = "0.31", default-features = false, features = ["fs", "poll", "process", "signal"] }
reqwest = { version = "0.13", default-features = false }
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
tempfile = "3"
thiserror = "2"
toml_edit = { version = "0.25", features = ["serde"] }
url = "2.5"
[workspace.lints.rust]
dead_code = "deny"
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "deny"
pedantic = "warn"
[package]
name = "kidobo"
version = "0.14.1"
edition = "2024"
license = "MIT"
description = "One-shot Linux firewall blocklist manager with atomic ipset updates"
readme = "README.md"
repository = "https://github.com/blwarren/kidobo"
homepage = "https://github.com/blwarren/kidobo"
keywords = ["firewall", "ipset", "iptables", "blocklist", "cli"]
categories = ["command-line-utilities", "network-programming"]
rust-version = "1.97.1"
[[bin]]
name = "kidobo"
path = "src/main.rs"
[dependencies]
clap.workspace = true
ctrlc.workspace = true
env_logger.workspace = true
kidobo-adapters.workspace = true
kidobo-app.workspace = true
log.workspace = true
serde_json.workspace = true
thiserror.workspace = true
[dev-dependencies]
criterion.workspace = true
fs2.workspace = true
kidobo-core.workspace = true
reqwest = { workspace = true, features = ["blocking", "rustls-no-provider"] }
sha2.workspace = true
tempfile.workspace = true
[[bench]]
name = "core_perf"
harness = false