[package]
edition = "2024"
name = "bit-string"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compact owned bit string type with editing, matching, and bitwise operations."
readme = "README.md"
keywords = [
"bitstring",
"bits",
"bitset",
"sequence",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jcfangc/bit-string"
[lib]
name = "bit_string"
path = "src/lib.rs"
doctest = false
[[bench]]
name = "bit_ops_count_ones"
path = "benches/bit_ops_count_ones.rs"
harness = false
[[bench]]
name = "bit_ops_not"
path = "benches/bit_ops_not.rs"
harness = false
[[bench]]
name = "bit_ops_shl"
path = "benches/bit_ops_shl.rs"
harness = false
[[bench]]
name = "bit_ops_shr"
path = "benches/bit_ops_shr.rs"
harness = false
[[bench]]
name = "bit_ops_xor"
path = "benches/bit_ops_xor.rs"
harness = false
[[bench]]
name = "editing_insert_middle"
path = "benches/editing_insert_middle.rs"
harness = false
[[bench]]
name = "editing_push"
path = "benches/editing_push.rs"
harness = false
[[bench]]
name = "editing_push_bits"
path = "benches/editing_push_bits.rs"
harness = false
[[bench]]
name = "editing_remove_middle"
path = "benches/editing_remove_middle.rs"
harness = false
[[bench]]
name = "editing_replace_interval"
path = "benches/editing_replace_interval.rs"
harness = false
[[bench]]
name = "editing_slice"
path = "benches/editing_slice.rs"
harness = false
[[bench]]
name = "matching_ends_with"
path = "benches/matching_ends_with.rs"
harness = false
[[bench]]
name = "matching_find"
path = "benches/matching_find.rs"
harness = false
[[bench]]
name = "matching_strip_prefix"
path = "benches/matching_strip_prefix.rs"
harness = false
[dependencies.int-interval]
version = "0.9.6"
[dev-dependencies.bitvec_simd]
version = "0.20.5"
[dev-dependencies.divan]
version = "4.7.0"
package = "codspeed-divan-compat"