[package]
edition = "2021"
rust-version = "1.81"
name = "bitgauss"
version = "0.4.3"
authors = ["Aleks Kissinger <aleks0@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast boolean linear algebra library"
homepage = "https://github.com/akissinger/bitgauss"
readme = "README.md"
keywords = [
"linear-algebra",
"matrix",
"bits",
]
categories = ["science"]
license = "Apache-2.0"
repository = "https://github.com/akissinger/bitgauss"
[lib]
name = "bitgauss"
path = "src/lib.rs"
[[bench]]
name = "matrix_ops"
path = "benches/matrix_ops.rs"
harness = false
[dependencies.rand]
version = "0.9.1"
features = ["small_rng"]
[dependencies.ref-cast]
version = "1.0.24"
[dependencies.rustc-hash]
version = "2.1.1"
[dev-dependencies.criterion]
version = "0.6.0"
features = ["html_reports"]