[[bench]]
harness = false
name = "construction"
path = "benches/construction.rs"
[[bench]]
harness = false
name = "gf_arithmetic"
path = "benches/gf_arithmetic.rs"
[dependencies.ndarray]
version = "0.16"
[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.20"
[dependencies.rayon]
optional = true
version = "1.10"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[features]
default = []
full = ["serde", "parallel", "stats", "python"]
parallel = ["dep:rayon", "ndarray/rayon"]
python = ["dep:pyo3"]
serde = ["dep:serde", "ndarray/serde"]
stats = []
[lib]
name = "taguchi"
path = "src/lib.rs"
[package]
authors = ["Nick Paterno"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "mathematics", "algorithms"]
description = "State-of-the-art orthogonal array (Taguchi) library for experimental design"
edition = "2021"
keywords = ["orthogonal-array", "taguchi", "statistics"]
license = "MIT OR Apache-2.0"
name = "taguchi"
readme = "README.md"
repository = "https://github.com/nickpaterno/taguchi"
rust-version = "1.75"
version = "0.1.0"
[profile.bench]
lto = true
[profile.release]
codegen-units = 1
lto = true