indexset 0.13.0

A two-level BTree with fast iteration and indexing operations
Documentation
[[bench]]
harness = false
name = "concurrent"
path = "benches/concurrent.rs"

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

[dependencies.crossbeam-skiplist]
optional = true
version = "0.1.3"

[dependencies.crossbeam-utils]
optional = true
version = "0.8.20"

[dependencies.fastrand]
optional = true
version = "2.3.0"

[dependencies.ftree]
features = ["serde"]
version = "1.3.0"

[dependencies.parking_lot]
features = ["send_guard", "arc_lock"]
optional = true
version = "0.12.3"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.151"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[dev-dependencies.rand]
version = "0.9.0"

[dev-dependencies.scc]
version = "2.2.5"

[features]
cdc = ["concurrent"]
concurrent = ["dep:crossbeam-utils", "dep:crossbeam-skiplist", "dep:parking_lot"]
multimap = ["concurrent", "dep:fastrand"]
serde = ["dep:serde"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures"]
description = "A two-level BTree with fast iteration and indexing operations"
documentation = "https://docs.rs/indexset/"
edition = "2021"
keywords = ["btreemap", "btreeset", "set", "map", "order-statistic"]
license = "Apache-2.0 OR MIT"
name = "indexset"
readme = "README.md"
repository = "https://github.com/brurucy/indexset"
version = "0.13.0"

[package.metadata.docs.rs]
features = ["cdc", "concurrent", "multimap"]