[package]
name = "wombatkv-node"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords.workspace = true
categories.workspace = true
description = "High-level WombatKV node API, store + lookup + touch + foyer-backed local cache. The Rust surface that wombatkv-cabi wraps for C/C++ engines (ds4, llama.cpp, custom)."
documentation = "https://docs.rs/wombatkv-node"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wombatkv-core = { path = "../wombatkv-core", version = "0.1.0-alpha.pre1.0" }
wombatkv-format = { path = "../wombatkv-format", version = "0.1.0-alpha.pre1.0" }
wombatkv-radix = { path = "../wombatkv-radix", version = "0.1.0-alpha.pre1.0" }
wombatkv-store = { path = "../wombatkv-store", version = "0.1.0-alpha.pre1.0" }
bytes = "1"
foyer = "0.22"
once_cell = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
twox-hash = "1"
blake3 = "1"
rkyv = { version = "0.8", features = ["bytecheck"] }
zstd = { version = "0.13", default-features = false }
wombatkv-dst = { path = "../wombatkv-dst", version = "0.1.0-alpha.pre1.0", optional = true }
[features]
default = []
dst = ["dep:wombatkv-dst"]
[dev-dependencies]
bincode = "1"
serde = { version = "1", features = ["derive"] }
tempfile = "3"
[lints]
workspace = true