[package]
edition = "2021"
rust-version = "1.95.0"
name = "wombatkv-node"
version = "0.1.0-alpha.pre1.0"
authors = [
"Venkat Raman <vraman2811@gmail.com>",
"WombatKV Contributors",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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)."
homepage = "https://github.com/Venkat2811/wombatkv"
documentation = "https://docs.rs/wombatkv-node"
readme = "README.md"
keywords = [
"kv-cache",
"llm",
"object-storage",
"inference",
"cache",
]
categories = [
"caching",
"database-implementations",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/Venkat2811/wombatkv"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
dst = ["dep:wombatkv-dst"]
[lib]
name = "wombatkv_node"
path = "src/lib.rs"
[[test]]
name = "embed_live_minio"
path = "tests/embed_live_minio.rs"
[[test]]
name = "myelon_pd_kv_roundtrip"
path = "tests/myelon_pd_kv_roundtrip.rs"
[dependencies.blake3]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.foyer]
version = "0.22"
[dependencies.once_cell]
version = "1"
[dependencies.rkyv]
version = "0.8"
features = ["bytecheck"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.twox-hash]
version = "1"
[dependencies.wombatkv-core]
version = "0.1.0-alpha.pre1.0"
[dependencies.wombatkv-dst]
version = "0.1.0-alpha.pre1.0"
optional = true
[dependencies.wombatkv-format]
version = "0.1.0-alpha.pre1.0"
[dependencies.wombatkv-radix]
version = "0.1.0-alpha.pre1.0"
[dependencies.wombatkv-store]
version = "0.1.0-alpha.pre1.0"
[dependencies.zstd]
version = "0.13"
default-features = false
[dev-dependencies.bincode]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
assigning_clones = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
default_trait_access = "allow"
doc_lazy_continuation = "allow"
doc_markdown = "allow"
doc_overindented_list_items = "allow"
field_reassign_with_default = "allow"
format_push_string = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_range_loop = "allow"
similar_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnecessary_debug_formatting = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_self = "allow"
used_underscore_binding = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"