[package]
edition = "2024"
name = "lav"
version = "0.8.4"
authors = ["Rouven Spreckels <rs@qu1x.dev>"]
build = false
include = [
"src/**/*.rs",
"katex.html",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSE-*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lane-Associated Vector (LAV): Portable SIMD vector trait as GAT of SIMD lane trait."
documentation = "https://docs.rs/lav"
readme = "README.md"
keywords = [
"portable-simd",
"simd-traits",
"num-traits",
"computer-graphics",
"geometric-algebra",
]
categories = [
"no-std",
"science",
"graphics",
"mathematics",
"game-development",
]
license = "MPL-2.0"
repository = "https://github.com/qu1x/lav"
[package.metadata.docs.rs]
features = ["target-features"]
rustdoc-args = [
"--html-in-header",
"katex.html",
]
[package.metadata.playground]
features = ["target-features"]
[lib]
name = "lav"
path = "src/lib.rs"
[dependencies.libm]
version = "0.2.15"
optional = true
[dependencies.target-features]
version = "0.1.6"
optional = true
[lints.clippy]
tabs-in-doc-comments = "allow"
type-repetition-in-bounds = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing-docs = "forbid"
unsafe-code = "forbid"
[lints.rustdoc]
broken-intra-doc-links = "forbid"