[package]
edition = "2024"
name = "elli-gf2"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Machine-first GF(2) elimination library with exact multi-backend reduction and auto-selection."
homepage = "https://github.com/DavidAmesAI/elli-gf2"
documentation = "https://docs.rs/elli-gf2"
readme = "README.md"
keywords = [
"gf2",
"linear-algebra",
"xor",
"binary-matrix",
"macro-op",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/DavidAmesAI/elli-gf2"
[lib]
name = "elli_gf2"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "bench_cli"
path = "src/bin/bench_cli.rs"
[[bin]]
name = "load_cli"
path = "src/bin/load_cli.rs"
[[bin]]
name = "smoke"
path = "src/bin/smoke.rs"
[[example]]
name = "rust_file_smoke"
path = "examples/rust_file_smoke.rs"
[dependencies]