[package]
edition = "2021"
rust-version = "1.90.0"
name = "roaring"
version = "0.11.4"
authors = [
"Wim Looman <wim@nemo157.com>",
"Kerollmops <kero@meilisearch.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A better compressed bitset - pure Rust implementation"
documentation = "https://docs.rs/roaring"
readme = "README.md"
keywords = [
"roaring",
"data-structure",
"bitmap",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RoaringBitmap/roaring-rs"
[features]
default = ["std"]
serde = [
"dep:serde",
"std",
]
simd = []
std = [
"dep:bytemuck",
"dep:byteorder",
]
[lib]
name = "roaring"
path = "src/lib.rs"
[[test]]
name = "clone"
path = "tests/clone.rs"
[[test]]
name = "difference_with"
path = "tests/difference_with.rs"
[[test]]
name = "intersect_with"
path = "tests/intersect_with.rs"
[[test]]
name = "is_disjoint"
path = "tests/is_disjoint.rs"
[[test]]
name = "is_subset"
path = "tests/is_subset.rs"
[[test]]
name = "iter"
path = "tests/iter.rs"
[[test]]
name = "iter_advance_to"
path = "tests/iter_advance_to.rs"
[[test]]
name = "iter_next_range"
path = "tests/iter_next_range.rs"
[[test]]
name = "iter_range"
path = "tests/iter_range.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"
[[test]]
name = "push"
path = "tests/push.rs"
[[test]]
name = "range_checks"
path = "tests/range_checks.rs"
[[test]]
name = "rank"
path = "tests/rank.rs"
[[test]]
name = "select"
path = "tests/select.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[test]]
name = "size_hint"
path = "tests/size_hint.rs"
[[test]]
name = "symmetric_difference_with"
path = "tests/symmetric_difference_with.rs"
[[test]]
name = "treemap_clone"
path = "tests/treemap_clone.rs"
[[test]]
name = "treemap_difference_with"
path = "tests/treemap_difference_with.rs"
[[test]]
name = "treemap_intersect_with"
path = "tests/treemap_intersect_with.rs"
[[test]]
name = "treemap_is_disjoint"
path = "tests/treemap_is_disjoint.rs"
[[test]]
name = "treemap_is_subset"
path = "tests/treemap_is_subset.rs"
[[test]]
name = "treemap_iter"
path = "tests/treemap_iter.rs"
[[test]]
name = "treemap_iter_advance_to"
path = "tests/treemap_iter_advance_to.rs"
[[test]]
name = "treemap_lib"
path = "tests/treemap_lib.rs"
[[test]]
name = "treemap_ops"
path = "tests/treemap_ops.rs"
[[test]]
name = "treemap_range_checks"
path = "tests/treemap_range_checks.rs"
[[test]]
name = "treemap_rank"
path = "tests/treemap_rank.rs"
[[test]]
name = "treemap_select"
path = "tests/treemap_select.rs"
[[test]]
name = "treemap_serialization"
path = "tests/treemap_serialization.rs"
[[test]]
name = "treemap_size_hint"
path = "tests/treemap_size_hint.rs"
[[test]]
name = "treemap_symmetric_difference_with"
path = "tests/treemap_symmetric_difference_with.rs"
[[test]]
name = "treemap_union_with"
path = "tests/treemap_union_with.rs"
[[test]]
name = "union_with"
path = "tests/union_with.rs"
[dependencies.bytemuck]
version = "1.21.0"
optional = true
[dependencies.byteorder]
version = "1.5.0"
optional = true
[dependencies.serde]
version = "1.0.217"
optional = true
[dev-dependencies.postcard]
version = "1.1"
features = ["alloc"]
[dev-dependencies.proptest]
version = "1.6.0"
[dev-dependencies.serde_json]
version = "1.0.138"