Files
ipfilter/cli/Cargo.toml
T
davidskrundz ebb7bbdf47 Initial commit
Includes IPv4 and IPv6 support, and a CLI for generating IpRanges from ip2location DB1 CSV files.
2025-03-11 21:16:25 -06:00

27 lines
475 B
TOML

[package]
name = "ipfilter-cli"
version = "0.0.0"
authors.workspace = true
edition.workspace = true
license-file.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
ipfilter = { workspace = true, features = ["std"] }
anyhow = { workspace = true }
clap = { workspace = true, features = [
"derive",
"color",
"help",
"suggestions",
"usage",
] }
csv = { workspace = true }
ipnet = { workspace = true }
itertools = { workspace = true }