[package]
edition = "2021"
name = "pare"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pareto frontier and skyline queries"
homepage = "https://github.com/arclabs561/pare"
documentation = "https://docs.rs/pare"
readme = "README.md"
keywords = [
"pareto",
"frontier",
"skyline",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/pare"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "pare"
path = "src/lib.rs"
[[example]]
name = "sensitivity_analysis"
path = "examples/sensitivity_analysis.rs"
[[test]]
name = "api_regression_tests"
path = "tests/api_regression_tests.rs"
[[test]]
name = "frontier_proptests"
path = "tests/frontier_proptests.rs"
[[test]]
name = "sensitivity_proptests"
path = "tests/sensitivity_proptests.rs"
[[bench]]
name = "pareto"
path = "benches/pareto.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rand_chacha]
version = "0.9"