indexset 0.15.0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dev-dependencies.uuid]
version = "1.17.0"
features = ["v7"]