[package]
edition = "2024"
name = "gamlss"
version = "0.1.0"
authors = ["hexqnt <hexqntlab@gmail.com>"]
build = false
include = [
"src/**/*",
"examples/**/*",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-driven Rust crates for GAMLSS modeling"
documentation = "https://docs.rs/gamlss"
readme = "README.md"
keywords = ["gamlss"]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hexqnt/gamlss"
[features]
default = ["formula"]
formula = ["dep:gamlss-formula"]
[lib]
name = "gamlss"
path = "src/lib.rs"
[[example]]
name = "gas_like"
path = "examples/gas_like.rs"
[[example]]
name = "simple_fit"
path = "examples/simple_fit.rs"
[dependencies.gamlss-core]
version = "0.1.0"
[dependencies.gamlss-family]
version = "0.1.0"
[dependencies.gamlss-formula]
version = "0.1.0"
optional = true
[dependencies.gamlss-spline]
version = "0.1.0"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.argmin]
version = "0.11.0"
[dev-dependencies.argmin-math]
version = "0.5.1"
features = ["vec"]
[lints.clippy]
all = "warn"
cargo = "warn"
nursery = "warn"
pedantic = "warn"