[package]
edition = "2024"
name = "score-set"
version = "0.5.1"
build = false
exclude = [
"src/lab.rs",
"src/**/tests_for_*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for building static weighted scoring operator sets"
readme = "README.md"
keywords = [
"scoring",
"weighted",
"metric",
"static",
"score",
]
categories = [
"algorithms",
"no-std",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jcfangc/score-set"
[features]
both = ["f64"]
f64 = []
[lib]
name = "score_set"
path = "src/lib.rs"
doctest = false
[[test]]
name = "both_precision"
path = "tests/both_precision.rs"
required-features = ["both"]
[dependencies.libm]
version = "0.2"
[dependencies.witnessed]
version = "0.8.0"