bit-string 0.2.1

A compact owned bit string type with editing, matching, and bitwise operations.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "bit-string"
version = "0.2.1"
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_xor"
path = "benches/bit_ops_xor.rs"
harness = false

[[bench]]
name = "construction_from_bool_iter"
path = "benches/construction_from_bool_iter.rs"
harness = false

[[bench]]
name = "construction_from_str"
path = "benches/construction_from_str.rs"
harness = false

[[bench]]
name = "construction_zeros"
path = "benches/construction_zeros.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"