la-stack 0.2.0

Small, stack-allocated linear algebra for fixed dimensions
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94"
name = "la-stack"
version = "0.2.0"
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"

[package.metadata.docs.rs]
features = ["exact"]

[features]
bench = [
    "criterion",
    "faer",
    "nalgebra",
]
default = []
exact = [
    "num-bigint",
    "num-rational",
]

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

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

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

[[example]]
name = "exact_sign_3x3"
path = "examples/exact_sign_3x3.rs"
required-features = ["exact"]

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

[[test]]
name = "proptest_exact"
path = "tests/proptest_exact.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.2"
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

[dependencies.num-bigint]
version = "0.4.6"
optional = true

[dependencies.num-rational]
version = "0.4.2"
features = ["num-bigint-std"]
optional = true

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

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

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

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

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

[profile.release]
lto = "fat"
codegen-units = 1