la-stack 0.1.0

Small, stack-allocated linear algebra for fixed dimensions
Documentation
[[bench]]
harness = false
name = "vs_nalgebra"
path = "benches/vs_nalgebra.rs"

[dependencies]

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"

[dev-dependencies.nalgebra]
version = "0.34.1"

[dev-dependencies.pastey]
version = "0.2.0"

[dev-dependencies.proptest]
version = "1.9.0"

[[example]]
name = "det_5x5"
path = "examples/det_5x5.rs"

[[example]]
name = "solve_5x5"
path = "examples/solve_5x5.rs"

[lib]
name = "la_stack"
path = "src/lib.rs"

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

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "science"]
description = "Small, stack-allocated linear algebra for fixed dimensions"
edition = "2024"
keywords = ["linear-algebra", "geometry", "const-generics"]
license = "BSD-3-Clause"
name = "la-stack"
readme = "README.md"
repository = "https://github.com/acgetchell/la-stack"
rust-version = "1.92"
version = "0.1.0"

[[test]]
name = "proptest_matrix"
path = "tests/proptest_matrix.rs"

[[test]]
name = "proptest_vector"
path = "tests/proptest_vector.rs"