[package]
edition = "2024"
rust-version = "1.89"
name = "lowess"
version = "1.3.0"
authors = ["Amir Valizadeh <thisisamirv@gmail.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LOWESS (Locally Weighted Scatterplot Smoothing)"
homepage = "https://github.com/thisisamirv/lowess-project"
documentation = "https://lowess.readthedocs.io/"
readme = "README.md"
keywords = [
"lowess",
"smoothing",
"statistics",
"regression",
"bioinformatics",
]
categories = [
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thisisamirv/lowess-project"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
dev = []
std = [
"num-traits/std",
"wide/std",
]
[lib]
name = "lowess"
path = "src/lib.rs"
[dependencies.num-traits]
version = "0.2"
features = ["libm"]
[dependencies.wide]
version = "1.4"
default-features = false