[package]
edition = "2021"
rust-version = "1.82"
name = "holt"
version = "0.3.2"
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 = "checkpoint_failpoint"
path = "tests/checkpoint_failpoint.rs"
[[test]]
name = "checkpointer_integration"
path = "tests/checkpointer_integration.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"
[dependencies.crc32fast]
version = "1.4"
default-features = false
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.dashmap]
version = "6"
[dependencies.smallvec]
version = "1"
[dependencies.tracing]
version = "0.1"
optional = true
default-features = false
[dev-dependencies.proptest]
version = "1"
features = [
"std",
"fork",
"timeout",
]
default-features = false
[dev-dependencies.rand]
version = "0.9"
[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