rs-aggregate/Cargo.toml

40 lines
879 B
TOML
Raw Normal View History

2023-03-13 23:11:45 -07:00
[package]
name = "rs-aggregate"
2023-12-12 04:18:31 -08:00
version = "0.3.2"
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-11-16 21:45:27 -08:00
exclude = [".github/*", "doc/*", "test-data/*"]
2023-03-13 23:11:45 -07:00
2023-12-12 04:18:31 -08:00
[features]
default = ["rayon"]
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-12-12 04:18:31 -08:00
rayon = { version = "1.8.0", optional = true }
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"
rand_chacha = "0.3.1"
rand = "0.8.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