[package]
edition = "2024"
name = "kevy"
version = "1.26.3"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kevy — a pure-Rust, zero-dependency, Redis-compatible KV server."
readme = "README.md"
keywords = [
"redis",
"kv",
"key-value",
"database",
"valkey",
]
categories = [
"database-implementations",
"caching",
"network-programming",
]
license = "Apache-2.0 OR MIT"
[lib]
name = "kevy"
path = "src/lib.rs"
[[bin]]
name = "kevy"
path = "src/main.rs"
[[example]]
name = "bench_cmd"
path = "examples/bench_cmd.rs"
[[test]]
name = "advanced_config"
path = "tests/advanced_config.rs"
[[test]]
name = "blocking"
path = "tests/blocking.rs"
[[test]]
name = "blocking_cross_shard"
path = "tests/blocking_cross_shard.rs"
[[test]]
name = "cluster"
path = "tests/cluster.rs"
[[test]]
name = "cluster_client"
path = "tests/cluster_client.rs"
[[test]]
name = "cmd_matrix"
path = "tests/cmd_matrix.rs"
[[test]]
name = "commands"
path = "tests/commands.rs"
[[test]]
name = "config_set"
path = "tests/config_set.rs"
[[test]]
name = "geo"
path = "tests/geo.rs"
[[test]]
name = "hello3"
path = "tests/hello3.rs"
[[test]]
name = "keyspace_notify"
path = "tests/keyspace_notify.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "psubscribe"
path = "tests/psubscribe.rs"
[[test]]
name = "rename"
path = "tests/rename.rs"
[[test]]
name = "replication"
path = "tests/replication.rs"
[[test]]
name = "resp3_replies"
path = "tests/resp3_replies.rs"
[[test]]
name = "resp3_subscriber"
path = "tests/resp3_subscriber.rs"
[[test]]
name = "scope_misdirected_e2e"
path = "tests/scope_misdirected_e2e.rs"
[[test]]
name = "scope_move_e2e"
path = "tests/scope_move_e2e.rs"
[[test]]
name = "sharded"
path = "tests/sharded.rs"
[[test]]
name = "skeleton"
path = "tests/skeleton.rs"
[[test]]
name = "slowlog"
path = "tests/slowlog.rs"
[[test]]
name = "slowlog_hotreload"
path = "tests/slowlog_hotreload.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[[test]]
name = "stream_group"
path = "tests/stream_group.rs"
[[test]]
name = "watch"
path = "tests/watch.rs"
[[test]]
name = "xread_gather"
path = "tests/xread_gather.rs"
[dependencies.kevy-config]
version = "1.19.0"
[dependencies.kevy-elect]
version = "1.19.0"
[dependencies.kevy-geo]
version = "1.19.0"
[dependencies.kevy-hash]
version = "1.19.0"
[dependencies.kevy-persist]
version = "1.19.0"
[dependencies.kevy-replicate]
version = "1.19.0"
[dependencies.kevy-resp]
version = "1.19.0"
[dependencies.kevy-rt]
version = "1.19.0"
[dependencies.kevy-scope]
version = "1.19.0"
[dependencies.kevy-store]
version = "1.19.0"
[dependencies.kevy-sys]
version = "1.19.0"
[dev-dependencies]
[lints.clippy.all]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"