math-solvers 0.4.1

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.4.1"
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",
    "oxiblas-ndarray",
    "oxiblas-core",
    "bytemuck",
    "rayon",
]
parallel = ["rayon"]
wasm = [
    "rayon",
    "wasm-bindgen",
    "wasm-bindgen-rayon",
]

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

[dependencies.bytemuck]
version = "1"
optional = true

[dependencies.log]
version = "0.4"

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

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

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

[dependencies.oxiblas-core]
version = "0.2"
optional = true

[dependencies.oxiblas-ndarray]
version = "0.2"
optional = true

[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"