[package]
edition = "2021"
rust-version = "1.70"
name = "geoit"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exact geometric algebra with governed multivectors"
homepage = "https://github.com/rikii/geoit"
documentation = "https://docs.rs/geoit"
readme = "README.md"
keywords = [
"geometric-algebra",
"clifford-algebra",
"exact-arithmetic",
"mathematics",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rikii/geoit"
[features]
diagnostics = []
[lib]
name = "geoit"
path = "src/lib.rs"
[[test]]
name = "algebraic_axioms"
path = "tests/algebraic_axioms.rs"
[[test]]
name = "algebras"
path = "tests/algebras.rs"
[[test]]
name = "builder_circuits"
path = "tests/builder_circuits.rs"
[[test]]
name = "circuit_cga"
path = "tests/circuit_cga.rs"
[[test]]
name = "circuit_pga"
path = "tests/circuit_pga.rs"
[[test]]
name = "circuit_vga"
path = "tests/circuit_vga.rs"
[[test]]
name = "governance_structural"
path = "tests/governance_structural.rs"
[[test]]
name = "scalar_tower"
path = "tests/scalar_tower.rs"
[[test]]
name = "step7_expanded"
path = "tests/step7_expanded.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[dependencies]