[package]
edition = "2024"
name = "score-set"
version = "3.0.0"
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"
[lib]
name = "score_set"
path = "src/lib.rs"
doctest = false
[[test]]
name = "composition"
path = "tests/composition.rs"
[[test]]
name = "dyn_score_set"
path = "tests/dyn_score_set.rs"
[[test]]
name = "metric"
path = "tests/metric.rs"
[[test]]
name = "v01"
path = "tests/v01.rs"
[[test]]
name = "weighted"
path = "tests/weighted.rs"
[dependencies.witnessed]
version = "0.8.0"