[package]
name = "la-stack"
version = "0.1.0"
edition = "2024"
rust-version = "1.92"
license = "BSD-3-Clause"
description = "Small, stack-allocated linear algebra for fixed dimensions"
readme = "README.md"
repository = "https://github.com/acgetchell/la-stack"
categories = ["mathematics", "science"]
keywords = ["linear-algebra", "geometry", "const-generics"]
[dependencies]
[dev-dependencies]
approx = "0.5.1"
criterion = { version = "0.8.1", features = ["html_reports"] }
nalgebra = "0.34.1"
pastey = "0.2.0"
proptest = "1.9.0"
[[bench]]
name = "vs_nalgebra"
harness = false
[lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
dead_code = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }