la-stack 0.1.3

Small, stack-allocated linear algebra for fixed dimensions
Documentation
[package]
name = "la-stack"
version = "0.1.3"
edition = "2024"
rust-version = "1.93"
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"
homepage = "https://github.com/acgetchell/la-stack"
categories = [ "mathematics", "science" ]
keywords = [ "linear-algebra", "geometry", "const-generics" ]

[dependencies]
# Intentionally empty (bench-only deps are optional features below)
criterion = { version = "0.8.1", features = [ "html_reports" ], optional = true }
faer = { version = "0.24.0", default-features = false, features = [ "std", "linalg" ], optional = true }
nalgebra = { version = "0.34.1", optional = true }

[dev-dependencies]
approx = "0.5.1"
pastey = "0.2.1"
proptest = "1.9.0"

[features]
default = [  ]
bench = [ "criterion", "faer", "nalgebra" ]

[[bench]]
name = "vs_linalg"
harness = false
required-features = [ "bench" ]

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

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