[package]
edition = "2021"
name = "oxits"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Time series classification and transformation library for Rust"
readme = "README.md"
keywords = [
"time-series",
"classification",
"dtw",
"saxvsm",
"rocket",
]
categories = [
"algorithms",
"science",
]
license = "MIT"
repository = "https://github.com/sipemu/oxits-rs"
[features]
datasets = [
"dep:ureq",
"serde",
"serde_json",
]
decomposition = ["dep:nalgebra"]
default = ["parallel"]
parallel = ["dep:rayon"]
validation = [
"serde",
"serde_json",
]
[lib]
name = "oxits"
path = "src/lib.rs"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
required-features = ["decomposition"]
[[example]]
name = "classify_gunpoint"
path = "examples/classify_gunpoint.rs"
[[example]]
name = "image_profile"
path = "examples/image_profile.rs"
[[example]]
name = "validation_runner"
path = "examples/validation_runner.rs"
required-features = ["validation"]
[[test]]
name = "golden_approximation"
path = "tests/golden_approximation.rs"
[[test]]
name = "golden_bag_of_words"
path = "tests/golden_bag_of_words.rs"
[[test]]
name = "golden_classification"
path = "tests/golden_classification.rs"
[[test]]
name = "golden_decomposition"
path = "tests/golden_decomposition.rs"
[[test]]
name = "golden_image"
path = "tests/golden_image.rs"
[[test]]
name = "golden_metrics"
path = "tests/golden_metrics.rs"
[[test]]
name = "golden_multivariate"
path = "tests/golden_multivariate.rs"
[[test]]
name = "golden_preprocessing"
path = "tests/golden_preprocessing.rs"
[[test]]
name = "golden_transformation"
path = "tests/golden_transformation.rs"
[[bench]]
name = "dtw_bench"
path = "benches/dtw_bench.rs"
harness = false
[[bench]]
name = "rocket_bench"
path = "benches/rocket_bench.rs"
harness = false
[dependencies.nalgebra]
version = "0.33"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.rayon]
version = "1.10"
optional = true
[dependencies.realfft]
version = "3.4"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.ureq]
version = "2"
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rayon]
version = "1.10"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[profile.release]
lto = "fat"
codegen-units = 1