You've already forked ipfilter
ebb7bbdf47
Includes IPv4 and IPv6 support, and a CLI for generating IpRanges from ip2location DB1 CSV files.
27 lines
475 B
TOML
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 }
|