[package]
edition = "2021"
name = "ogdoad"
version = "1.0.7"
authors = ["a9lim <mx@a9l.im>"]
build = false
include = [
"/src/**",
"/benches/**",
"/examples/**",
"/tests/**",
"/README.md",
"/LICENSE",
"/AGENTS.md",
"/CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Clifford and Weyl algebras, quadratic forms, and games over exact, finite, local, and transfinite scalar backends."
homepage = "https://github.com/a9lim/ogdoad"
documentation = "https://docs.rs/ogdoad"
readme = "README.md"
keywords = [
"clifford-algebra",
"weyl-algebra",
"surreal-numbers",
"quadratic-forms",
"game-theory",
]
categories = [
"mathematics",
"science",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/a9lim/ogdoad"
[package.metadata.docs.rs]
no-default-features = false
[features]
default = []
python = [
"dep:pyo3",
"pyo3/extension-module",
]
[lib]
name = "ogdoad"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "bent_route"
path = "examples/bent_route.rs"
[[example]]
name = "interactive_kernel"
path = "examples/interactive_kernel.rs"
[[example]]
name = "loopy_quadric"
path = "examples/loopy_quadric.rs"
[[example]]
name = "misere_quotient"
path = "examples/misere_quotient.rs"
[[example]]
name = "octal_hunt"
path = "examples/octal_hunt.rs"
[[example]]
name = "tour"
path = "examples/tour.rs"
[[example]]
name = "tropical"
path = "examples/tropical.rs"
[[example]]
name = "weyl"
path = "examples/weyl.rs"
[[test]]
name = "clifford_axioms"
path = "tests/clifford_axioms.rs"
[[test]]
name = "scalar_axioms"
path = "tests/scalar_axioms.rs"
[[test]]
name = "tropical_axioms"
path = "tests/tropical_axioms.rs"
[[test]]
name = "weyl_axioms"
path = "tests/weyl_axioms.rs"
[[bench]]
name = "data_structures"
path = "benches/data_structures.rs"
harness = false
[[bench]]
name = "major_speedups"
path = "benches/major_speedups.rs"
harness = false
[[bench]]
name = "optimization_followups"
path = "benches/optimization_followups.rs"
harness = false
[dependencies.pyo3]
version = "0.29"
features = ["abi3-py39"]
optional = true
[dev-dependencies.proptest]
version = "1"