salib 0.1.0

Global sensitivity analysis in Rust. Variance-based (Sobol'), Morris, FAST/eFAST/RBD-FAST, Borgonovo δ, PAWN, DGSM, regression (SRC/SRRC/PCC/PRCC), PCE surrogate, Shapley effects, and more. A Rust port of Python's SALib.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.87"
name = "salib"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Global sensitivity analysis in Rust. Variance-based (Sobol'), Morris,
FAST/eFAST/RBD-FAST, Borgonovo δ, PAWN, DGSM, regression (SRC/SRRC/PCC/PRCC),
PCE surrogate, Shapley effects, and more. A Rust port of Python's SALib.
"""
readme = false
keywords = [
    "sensitivity-analysis",
    "sobol",
    "morris",
    "uq",
    "global-sensitivity",
]
categories = [
    "science",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/antimeme-ai/salib"

[features]
default = [
    "samplers",
    "estimators",
]
estimators = ["dep:salib-estimators"]
full = [
    "samplers",
    "estimators",
    "surrogate",
    "shapley",
    "validation",
]
samplers = ["dep:salib-samplers"]
shapley = ["dep:salib-shapley"]
surrogate = [
    "dep:salib-surrogate",
    "salib-estimators?/surrogate",
]
validation = ["dep:salib-validation"]

[lib]
name = "salib"
path = "src/lib.rs"

[dependencies.salib-core]
version = "0.1.0"

[dependencies.salib-estimators]
version = "0.1.0"
optional = true

[dependencies.salib-samplers]
version = "0.1.0"
optional = true

[dependencies.salib-shapley]
version = "0.1.0"
optional = true

[dependencies.salib-surrogate]
version = "0.1.0"
optional = true

[dependencies.salib-validation]
version = "0.1.0"
optional = true

[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"