[package]
edition = "2024"
rust-version = "1.85.0"
name = "vee"
version = "0.1.7"
authors = ["Rouven Spreckels <rs@qu1x.dev>"]
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"tests/**/*.ct",
"katex.html",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSE-MPL",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector Expression Emitter (VEE): Geometric Algebra Code Generator"
documentation = "https://docs.rs/vee"
readme = "README.md"
keywords = ["geometric-algebra"]
categories = [
"science",
"graphics",
"mathematics",
"game-development",
]
license = "MPL-2.0"
repository = "https://github.com/qu1x/vee"
[package.metadata.docs.rs]
cargo-args = [
"-Z",
"unstable-options",
"-Z",
"rustdoc-scrape-examples",
]
rustdoc-args = [
"--cfg",
"docsrs",
"--html-in-header",
"katex.html",
]
[lib]
name = "vee"
path = "src/lib.rs"
[dependencies.pretty_assertions]
version = "1.4.1"
optional = true
[dev-dependencies]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
confusable_idents = "allow"
missing-docs = "forbid"
[lints.rustdoc]
broken-intra-doc-links = "forbid"