[go: up one dir, main page]

roaring 0.10.12

A better compressed bitset - pure Rust implementation
Documentation
[dependencies.bytemuck]
optional = true
version = "1.21.0"

[dependencies.byteorder]
optional = true
version = "1.5.0"

[dependencies.serde]
optional = true
version = "1.0.217"

[dev-dependencies.postcard]
features = ["alloc"]
version = "1.1"

[dev-dependencies.proptest]
version = "1.6.0"

[dev-dependencies.serde_json]
version = "1.0.138"

[features]
default = ["std"]
serde = ["dep:serde", "std"]
simd = []
std = ["dep:bytemuck", "dep:byteorder"]

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

[package]
authors = ["Wim Looman <wim@nemo157.com>", "Kerollmops <kero@meilisearch.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures"]
description = "A better compressed bitset - pure Rust implementation"
documentation = "https://docs.rs/roaring"
edition = "2021"
keywords = ["roaring", "data-structure", "bitmap"]
license = "MIT OR Apache-2.0"
name = "roaring"
readme = "README.md"
repository = "https://github.com/RoaringBitmap/roaring-rs"
rust-version = "1.65.0"
version = "0.10.12"

[[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_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_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"