index-db 1.0.0

B+tree indexing primitive for Rust storage engines - ordered keys, range scans, and concurrent access over paged storage.
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.85"
name = "index-db"
version = "1.0.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "B+tree indexing primitive for Rust storage engines - ordered keys, range scans, and concurrent access over paged storage."
homepage = "https://github.com/jamesgober/index-db"
documentation = "https://docs.rs/index-db"
readme = "README.md"
keywords = [
    "btree",
    "b-plus-tree",
    "index",
    "range-scan",
    "storage-engine",
]
categories = [
    "data-structures",
    "database-implementations",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/jamesgober/index-db"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
std = []

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

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

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

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

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

[[test]]
name = "btree"
path = "tests/btree.rs"

[[test]]
name = "soak"
path = "tests/soak.rs"

[[test]]
name = "stress"
path = "tests/stress.rs"

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

[dependencies]

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

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

[target."cfg(loom)".dev-dependencies.loom]
version = "0.7"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"