[package]
edition = "2021"
name = "sbits"
version = "0.1.1"
authors = ["Arc <attobop@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Succinct data structures: near-optimal space with efficient queries."
homepage = "https://github.com/arclabs561/sbits"
documentation = "https://docs.rs/sbits"
readme = "README.md"
keywords = [
"succinct",
"bitvec",
"rank-select",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/sbits"
[lib]
name = "sbits"
path = "src/lib.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[bench]]
name = "succ_bench"
path = "benches/succ_bench.rs"
harness = false
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"