bitset-matrix 0.1.0

Space-efficient, row-major 2D bitset matrix with fast bitwise ops
Documentation
[[bench]]
name = "bit_ops"
path = "benches/bit_ops.rs"

[dependencies]

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.quickcheck]
version = "1.0"

[dev-dependencies.rand]
version = "0.8"

[[example]]
name = "n_queens"
path = "examples/n_queens.rs"

[[example]]
name = "sudoku"
path = "examples/sudoku.rs"

[features]
simd = []

[lib]
name = "bitset_matrix"
path = "src/lib.rs"

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

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "simd_smoke"
path = "tests/simd_smoke.rs"