bitset-matrix 0.1.0

Space-efficient, row-major 2D bitset matrix with fast bitwise ops
Documentation
[package]
name = "bitset-matrix"
version = "0.1.0"
edition = "2024"
authors = ["Mohtashim Nawaz"]
description = "Space-efficient, row-major 2D bitset matrix with fast bitwise ops"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/your-username/bitset-matrix"
homepage = "https://github.com/your-username/bitset-matrix"
documentation = "https://docs.rs/bitset-matrix"
keywords = ["bitset", "bit-matrix", "boolean", "simd", "matrix"]
categories = ["data-structures", "algorithms"]

[dependencies]

[features]
# `simd` is a feature toggle for future SIMD backends. Currently it uses
# a scalar fallback implementation to ensure portability across toolchains.
simd = []

[dev-dependencies]
criterion = "0.5"
quickcheck = "1.0"
rand = "0.8"