salib 0.1.1

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. Implemented from the primary literature.
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.1"
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. Implemented from the primary literature.
"""
readme = "README.md"
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]
arrow = ["dep:arrow"]
default = [
    "samplers",
    "estimators",
    "parallel",
]
estimators = ["dep:salib-estimators"]
full = [
    "samplers",
    "estimators",
    "surrogate",
    "shapley",
    "validation",
]
parallel = ["salib-core/parallel"]
polars = [
    "dep:polars",
    "arrow",
]
samplers = ["dep:salib-samplers"]
serde = [
    "salib-samplers?/serde",
    "salib-estimators?/serde",
    "salib-surrogate?/serde",
    "salib-shapley?/serde",
    "salib-validation?/serde",
]
shapley = ["dep:salib-shapley"]
surrogate = [
    "dep:salib-surrogate",
    "salib-estimators?/surrogate",
]
validation = ["dep:salib-validation"]

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

[[test]]
name = "arrow_roundtrip"
path = "tests/arrow_roundtrip.rs"

[dependencies.arrow]
version = "54"
features = ["ffi"]
optional = true
default-features = false

[dependencies.polars]
version = "0.46"
features = ["lazy"]
optional = true
default-features = false

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

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

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

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

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

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

[dev-dependencies.serde_json]
version = "1"

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