la-stack 0.1.2

Small, stack-allocated linear algebra for fixed dimensions
Documentation
[package]
name = "la-stack"
version = "0.1.2"
edition = "2024"
rust-version = "1.92"
license = "BSD-3-Clause"
description = "Small, stack-allocated linear algebra for fixed dimensions"
readme = "README.md"
documentation = "https://docs.rs/la-stack"
repository = "https://github.com/acgetchell/la-stack"
categories = [ "mathematics", "science" ]
keywords = [ "linear-algebra", "geometry", "const-generics" ]

[dependencies]
# Intentionally empty

[dev-dependencies]
approx = "0.5.1"
criterion = { version = "0.8.1", features = [ "html_reports" ] }
faer = { version = "0.23.2", default-features = false, features = [ "std", "linalg" ] }
nalgebra = "0.34.1"
pastey = "0.2.1"
proptest = "1.9.0"

[[bench]]
name = "vs_linalg"
harness = false

[lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
dead_code = "warn"

[lints.clippy]
pedantic = { level = "warn", priority = -1 }