[package]
edition = "2024"
name = "touchstone-rs"
version = "0.3.0"
authors = ["Phillip Wenig"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for benchmarking streaming anomaly detectors against labeled time-series datasets"
homepage = "https://github.com/wenig/touchstone-rs"
documentation = "https://docs.rs/touchstone-rs"
readme = "README.md"
keywords = [
"anomaly-detection",
"benchmarking",
"time-series",
"streaming",
]
categories = [
"algorithms",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/wenig/touchstone-rs"
[lib]
name = "touchstone_rs"
path = "src/lib.rs"
[[example]]
name = "normal_distribution_detector"
path = "examples/normal_distribution_detector.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.indicatif]
version = "0.18"
[dependencies.polars]
version = "0.53"
features = [
"csv",
"parquet",
]
[dependencies.rayon]
version = "1"
[dev-dependencies.tempfile]
version = "3"