math-solvers 0.3.5

High-performance linear solvers for BEM and FEM
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 = "2024"
name = "math-solvers"
version = "0.3.5"
authors = ["Pierre F. Aubert pierre@spinorama.org"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance linear solvers for BEM and FEM"
readme = false
keywords = [
    "linear-algebra",
    "solvers",
    "gmres",
    "preconditionner",
]
categories = [
    "science",
    "mathematics",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/pierreaubert/sotf"

[features]
default = ["native"]
native = [
    "ndarray/blas",
    "ndarray/rayon",
    "ndarray-linalg",
    "rayon",
]
parallel = ["rayon"]
wasm = [
    "rayon",
    "wasm-bindgen",
    "wasm-bindgen-rayon",
]

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

[dependencies.log]
version = "0.4"

[dependencies.ndarray]
version = "0.17"
features = [
    "rayon",
    "serde",
]
default-features = false

[dependencies.ndarray-linalg]
version = "0.18"
optional = true

[dependencies.num-complex]
version = "0.4"
features = ["serde"]

[dependencies.num-traits]
version = "0.2"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.thiserror]
version = "2.0.17"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dependencies.wasm-bindgen-rayon]
version = "1.2"
optional = true

[dev-dependencies.approx]
version = "0.5"

[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies.ndarray-linalg]
version = "0.18"
features = ["openblas-system"]
optional = true

[target.'cfg(target_os = "macos")'.dependencies.ndarray-linalg]
version = "0.18"
features = ["openblas-system"]
optional = true