kevy 2.0.21

kevy — a pure-Rust, zero-dependency, Redis-compatible KV server.
Documentation
[package]
name = "kevy"
description = "kevy — a pure-Rust, zero-dependency, Redis-compatible KV server."
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
readme = "README.md"
keywords = ["redis", "kv", "key-value", "database", "valkey"]
categories = ["database-implementations", "caching", "network-programming"]

[lints]
workspace = true

[lib]
name = "kevy"
path = "src/lib.rs"

[[bin]]
name = "kevy"
path = "src/main.rs"

[dependencies]
kevy-sys = { path = "../kevy-sys", version = "2.0.0" }
kevy-resp = { path = "../kevy-resp", version = "2.0.0" }
kevy-store = { path = "../kevy-store", version = "2.0.0" }
kevy-rt = { path = "../kevy-rt", version = "2.0.0" }
kevy-config = { path = "../kevy-config", version = "2.0.0" }
kevy-persist = { path = "../kevy-persist", version = "2.0.0" }
kevy-geo = { path = "../kevy-geo", version = "2.0.0" }
kevy-hash = { path = "../kevy-hash", version = "2.0.0" }
# kevy-replicate: the server-as-replica runner (T1.29) needs
# `ReplicaClient` / `ReplicaEvent` at runtime, not just for tests.
# (Pre-T1.29 the dep was dev-only via `tests/replication.rs` decoding
# wire frames; T1.29 promotes it to a normal dep.)
kevy-replicate = { path = "../kevy-replicate", version = "2.0.0" }
# kevy-elect: v3-cluster Phase 1.5 quorum failover. Opt-in via
# `[cluster] peers = "..."`; dormant when not configured, so the
# v1.18-era deployments are unaffected.
kevy-elect = { path = "../kevy-elect", version = "2.0.0" }
# kevy-scope: v3-cluster Phase 3 scoped multi-writer ownership.
# Opt-in via `[cluster] scopes = "..."`; dormant otherwise.
kevy-scope = { path = "../kevy-scope", version = "2.0.0" }
# v1.27 P7b: Lua scripting bridge — pulls the carved-exemption
# kevy-lua + kevy-lua-host crates. See workspace Cargo.toml exemption
# #2/#3: the only transitive third-party crate is `luna-core` (GOLIA
# family, CI-gated 0-dep on luna's side).
kevy-lua = { path = "../kevy-lua", version = "=2.0.21" }
kevy-lua-host = { path = "../kevy-lua-host", version = "=2.0.21" }

[dev-dependencies]
kevy-bench = { path = "../kevy-bench" }
# kevy-client is the URL-facade client; only used by integration tests
# that exercise BOTH server + client in one process (e.g. the RESP3
# Subscriber round-trip). Dev-only — never enters the published kevy
# binary's dep graph.
kevy-client = { path = "../kevy-client" }
# v1.31: chaos test harness — spawns kevy as a child for crash safety
# tests. Test-only; never reaches the production server.
kevy-chaos = { path = "../kevy-chaos" }
# v1.40: backup/restore container API — only the chaos test that
# verifies the round-trip references this.
kevy-cli = { path = "../kevy-cli" }