rs-aggregate/Cargo.toml

38 lines
769 B
TOML
Raw Normal View History

2023-03-13 23:11:45 -07:00
[package]
name = "rs-aggregate"
2023-10-21 14:39:55 -07:00
version = "0.3.0"
authors = ["Keenan Tims <ktims@gotroot.ca>"]
2023-03-13 23:11:45 -07:00
edition = "2021"
description = "Aggregate a list of IP prefixes into their minimum equivalent representation"
readme = "README.md"
repository = "https://github.com/ktims/rs-aggregate"
license = "MIT"
categories = ["network-programming"]
2023-03-23 13:08:08 -07:00
exclude = [
".github/*",
"doc/*",
"test-data/*",
]
2023-03-13 23:11:45 -07:00
[dependencies]
2023-10-21 14:39:55 -07:00
clap = { version = "4.4.6", features = ["derive"] }
clio = { version = "0.3.4", features = ["clap-parse"] }
2023-10-21 14:33:23 -07:00
ipnet = "2.8.0"
2023-03-13 23:11:45 -07:00
[dev-dependencies]
assert_cmd = "2.0.10"
assert_fs = "1.0.12"
predicates = "3.0.1"
rstest = "0.16.0"
glob = "0.3.1"
2023-11-15 15:29:12 -08:00
tempfile = "3.8.1"
json = "0.12.4"
plotters = "0.3.5"
2023-03-13 23:11:45 -07:00
[[bin]]
name = "rs-aggregate"
2023-11-15 15:29:12 -08:00
[[bench]]
name = "perf"
harness = false