[dependencies.lowess]
features = ["dev"]
version = "0.5"
[dependencies.ndarray]
default-features = false
version = "0.17.1"
[dependencies.num-traits]
default-features = false
features = ["libm"]
version = "0.2"
[dependencies.rayon]
version = "1.11"
[dev-dependencies.approx]
version = "0.5"
[features]
default = []
dev = []
[lib]
name = "fastLowess"
path = "src/lib.rs"
[package]
authors = ["Amir Valizadeh <thisisamirv@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "algorithms"]
description = "High-level, parallel LOWESS smoothing built on top of the lowess crate, with ndarray integration and rayon-based parallelism."
documentation = "https://docs.rs/fastLowess"
edition = "2024"
homepage = "https://github.com/thisisamirv/fastLowess"
include = ["src/**/*", "docs/**/*.svg", "Cargo.toml", "README.md", "LICENSE", "CHANGELOG.md"]
keywords = ["lowess", "smoothing", "statistics", "regression", "bioinformatics"]
license = "AGPL-3.0-or-later"
name = "fastLowess"
readme = "README.md"
repository = "https://github.com/thisisamirv/fastLowess"
rust-version = "1.85.0"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
lto = true
opt-level = 3