[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-client"
version = "6.2.1"
authors = ["GOLIA K.K."]
build = false
exclude = ["tests/wrap_parity.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified client for kevy — switch between in-process embedded and TCP server backends with a single URL."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-client"
readme = "README.md"
keywords = [
"kevy",
"redis",
"kv",
"client",
"embedded",
]
categories = [
"database",
"caching",
"api-bindings",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_client"
path = "src/lib.rs"
[[example]]
name = "cluster"
path = "examples/cluster.rs"
[[example]]
name = "cluster_bench"
path = "examples/cluster_bench.rs"
[[test]]
name = "embedded_pubsub"
path = "tests/embedded_pubsub.rs"
[[test]]
name = "iter"
path = "tests/iter.rs"
[[test]]
name = "subscribe"
path = "tests/subscribe.rs"
[[test]]
name = "transaction"
path = "tests/transaction.rs"
[dependencies.kevy-embedded]
version = "6.2.1"
[dependencies.kevy-hash]
version = "6.2.1"
[dependencies.kevy-resp]
version = "6.2.1"
[dependencies.kevy-resp-client]
version = "6.2.1"
[dev-dependencies.kevy]
version = "6.2.1"
[dev-dependencies.kevy-rt]
version = "6.2.1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"