diffsol-la 0.1.0

Linear algebra traits and backends (vectors, matrices, linear solvers) for diffsol.
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"
name = "diffsol-la"
version = "0.1.0"
authors = ["Martin Robinson <martinjrobins@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linear algebra traits and backends (vectors, matrices, linear solvers) for diffsol."
readme = "README.md"
keywords = [
    "linear-algebra",
    "matrix",
    "vector",
    "solver",
    "math",
]
license = "MIT"
repository = "https://github.com/martinjrobins/diffsol"

[features]
cuda = ["dep:cudarc"]
default = [
    "nalgebra",
    "faer",
]
faer = []
nalgebra = []
suitesparse = ["dep:suitesparse_sys"]

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

[dependencies.cudarc]
version = "0.19"
features = [
    "cuda-version-from-build-system",
    "cusolver",
    "dynamic-linking",
    "std",
    "cublas",
    "cublaslt",
    "curand",
    "driver",
    "runtime",
    "nvrtc",
]
optional = true
default-features = false

[dependencies.faer-traits]
version = "0.24"

[dependencies.nalgebra]
version = "0.35"

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

[dependencies.suitesparse_sys]
version = "0.1"
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.paste]
version = "1.0.15"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.faer]
version = "0.24"
features = [
    "std",
    "sparse-linalg",
    "rand",
    "npy",
    "rayon",
]
default-features = false

[target.'cfg(target_arch = "wasm32")'.dependencies.faer]
version = "0.24"
features = [
    "std",
    "sparse-linalg",
    "rand",
    "npy",
]
default-features = false