[package]
edition = "2024"
rust-version = "1.93"
name = "la-stack"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small, stack-allocated linear algebra for fixed dimensions"
homepage = "https://github.com/acgetchell/la-stack"
documentation = "https://docs.rs/la-stack"
readme = "README.md"
keywords = [
"linear-algebra",
"geometry",
"const-generics",
]
categories = [
"mathematics",
"science",
]
license = "BSD-3-Clause"
repository = "https://github.com/acgetchell/la-stack"
[features]
bench = [
"criterion",
"faer",
"nalgebra",
]
default = []
[lib]
name = "la_stack"
path = "src/lib.rs"
[[example]]
name = "det_5x5"
path = "examples/det_5x5.rs"
[[example]]
name = "solve_5x5"
path = "examples/solve_5x5.rs"
[[test]]
name = "proptest_factorizations"
path = "tests/proptest_factorizations.rs"
[[test]]
name = "proptest_matrix"
path = "tests/proptest_matrix.rs"
[[test]]
name = "proptest_vector"
path = "tests/proptest_vector.rs"
[[bench]]
name = "vs_linalg"
path = "benches/vs_linalg.rs"
harness = false
required-features = ["bench"]
[dependencies.criterion]
version = "0.8.1"
features = ["html_reports"]
optional = true
[dependencies.faer]
version = "0.24.0"
features = [
"std",
"linalg",
]
optional = true
default-features = false
[dependencies.nalgebra]
version = "0.34.1"
optional = true
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.pastey]
version = "0.2.1"
[dev-dependencies.proptest]
version = "1.9.0"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "warn"
missing_docs = "warn"
unsafe_code = "forbid"