[package]
edition = "2021"
rust-version = "1.82"
name = "holt"
version = "0.2.1"
authors = ["the holt contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An adaptive-radix-tree metadata storage engine for path-shaped keys, with per-blob concurrency and crash-safe persistence."
homepage = "https://github.com/feichai0017/holt"
documentation = "https://docs.rs/holt"
readme = "README.md"
keywords = [
"art",
"radix-tree",
"metadata",
"storage",
"embedded",
]
categories = [
"database-implementations",
"data-structures",
"filesystem",
]
license = "MIT"
repository = "https://github.com/feichai0017/holt"
[features]
default = []
io-uring = ["dep:io-uring"]
metrics = []
tracing = ["dep:tracing"]
[lib]
name = "holt"
path = "src/lib.rs"
[[example]]
name = "basic_kv"
path = "examples/basic_kv.rs"
[[example]]
name = "filesystem_meta"
path = "examples/filesystem_meta.rs"
[[example]]
name = "s3_metadata"
path = "examples/s3_metadata.rs"
[[example]]
name = "session_store"
path = "examples/session_store.rs"
[[test]]
name = "bench_bg_checkpointer"
path = "tests/bench_bg_checkpointer.rs"
[[test]]
name = "bench_checkpoint_sweep"
path = "tests/bench_checkpoint_sweep.rs"
[[test]]
name = "bench_contention_p95"
path = "tests/bench_contention_p95.rs"
[[test]]
name = "bench_multi_reader"
path = "tests/bench_multi_reader.rs"
[[test]]
name = "checkpoint_failpoint"
path = "tests/checkpoint_failpoint.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "tree_smoke"
path = "tests/tree_smoke.rs"
[[test]]
name = "wal_tree_integration"
path = "tests/wal_tree_integration.rs"
[[bench]]
name = "main"
path = "benches/main.rs"
harness = false
[dependencies.crc32fast]
version = "1.4"
default-features = false
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.dashmap]
version = "6"
[dependencies.tracing]
version = "0.1"
optional = true
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.hdrhistogram]
version = "7"
default-features = false
[dev-dependencies.proptest]
version = "1"
features = [
"std",
"fork",
"timeout",
]
default-features = false
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rocksdb]
version = "0.24"
default-features = false
[dev-dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.bench]
inherits = "release"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1