[package]
edition = "2021"
rust-version = "1.95.0"
name = "wombatkv-core"
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 = "Core types, errors, and shared primitives for WombatKV (object-storage-native KV cache system for LLM inference). Leaf crate, no internal deps."
homepage = "https://github.com/Venkat2811/wombatkv"
documentation = "https://docs.rs/wombatkv-core"
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",
]
[lib]
name = "wombatkv_core"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.8.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[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"