splinter-rs 0.12.0

A compressed bitmap format optimized for small, sparse sets of u32s with zero-copy querying.
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"
rust-version = "1.87"
name = "splinter-rs"
version = "0.12.0"
authors = ["orbitinghail <hello@orbitinghail.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compressed bitmap format optimized for small, sparse sets of u32s with zero-copy querying."
homepage = "https://github.com/orbitinghail/splinter-rs"
readme = "README.md"
keywords = [
    "bitmap",
    "compression",
    "zero-copy",
]
categories = [
    "data-structures",
    "encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orbitinghail/splinter-rs"

[features]
default = []
testutil = [
    "dep:rand",
    "dep:proptest",
]

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

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

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

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

[dependencies.assert_matches]
version = "1.5.0"

[dependencies.bitvec]
version = "1.0.1"

[dependencies.bytes]
version = "1.10"

[dependencies.crc64fast-nvme]
version = "1.2.0"

[dependencies.either]
version = "1.15"

[dependencies.itertools]
version = "0.14"

[dependencies.num]
version = "0.4"

[dependencies.proptest]
version = "1.7.0"
optional = true

[dependencies.rand]
version = "0.9"
optional = true

[dependencies.range-set-blaze]
version = "0.4.0"

[dependencies.static_assertions]
version = "1.1"

[dependencies.thiserror]
version = "2.0"

[dependencies.u24]
version = "0.5.0"
features = ["range-set-blaze"]

[dependencies.zerocopy]
version = "0.8"
features = ["derive"]

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

[dev-dependencies.lz4]
version = "=1.28.1"

[dev-dependencies.roaring]
version = "=0.11.2"

[lints.clippy]
disallowed_methods = "deny"
doc-markdown = "warn"
map-unwrap-or = "warn"
uninlined-format-args = "warn"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1