[package]
edition = "2024"
rust-version = "1.85"
name = "rustebra"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hybrid no_std/alloc linear algebra crate for Rust, scaling from embedded targets to dynamic Krylov subspace solvers."
homepage = "https://tec-eli.github.io/rustebra"
documentation = "https://docs.rs/rustebra"
readme = "README.md"
keywords = [
"linear-algebra",
"matrix",
"vector",
"no-std",
"numerical",
]
categories = [
"algorithms",
"mathematics",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/tec-eli/rustebra"
[features]
alloc = []
[lib]
name = "rustebra"
path = "src/lib.rs"
[[example]]
name = "algorithm"
path = "examples/algorithm/main.rs"
[[example]]
name = "matrix"
path = "examples/matrix/main.rs"
[[example]]
name = "scalar"
path = "examples/scalar/main.rs"
[[example]]
name = "sparse"
path = "examples/sparse/main.rs"
required-features = ["alloc"]
[[example]]
name = "storage"
path = "examples/storage/main.rs"
[[example]]
name = "vector"
path = "examples/vector/main.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases/main.rs"
[[test]]
name = "integration"
path = "tests/integration/main.rs"
[[test]]
name = "numerical_stress"
path = "tests/numerical_stress.rs"
[[test]]
name = "property"
path = "tests/property/main.rs"
[dependencies]
[dev-dependencies.nalgebra]
version = "0.33"
[dev-dependencies.proptest]
version = "1"
[profile.release]
lto = true
panic = "abort"