kevy-embedded 4.0.0

Embedded mode for kevy — in-process Redis-compatible KV without the server/runtime.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-embedded"
version = "4.0.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded mode for kevy — in-process Redis-compatible KV without the server/runtime."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-embedded"
readme = "README.md"
keywords = [
    "kevy",
    "redis",
    "kv",
    "embedded",
    "cache",
]
categories = [
    "database-implementations",
    "caching",
    "embedded",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"

[features]
core = []
default = [
    "core",
    "persist",
    "index",
    "text",
    "vector",
    "replicate",
    "listener",
    "tier",
]
index = ["dep:kevy-index"]
listener = []
persist = ["dep:kevy-persist"]
replicate = [
    "persist",
    "dep:kevy-replicate",
    "dep:kevy-resp",
]
text = [
    "index",
    "dep:kevy-text",
]
tier = [
    "persist",
    "dep:kevy-sys",
]
vector = [
    "index",
    "dep:kevy-vector",
]

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

[[example]]
name = "axis_f_embedded"
path = "examples/axis_f_embedded.rs"

[[example]]
name = "bench_embed"
path = "examples/bench_embed.rs"

[[example]]
name = "bench_embed_mt"
path = "examples/bench_embed_mt.rs"

[[example]]
name = "crash_check"
path = "examples/crash_check.rs"

[[example]]
name = "crash_writer"
path = "examples/crash_writer.rs"

[[example]]
name = "embed_throughput"
path = "examples/embed_throughput.rs"

[[example]]
name = "embed_vs_server"
path = "examples/embed_vs_server.rs"

[[example]]
name = "embedded"
path = "examples/embedded.rs"

[[example]]
name = "embedded-cache"
path = "examples/embedded-cache.rs"

[[example]]
name = "iot_core"
path = "examples/iot_core.rs"

[[example]]
name = "iot_demo"
path = "examples/iot_demo.rs"

[[example]]
name = "listener_tax"
path = "examples/listener_tax.rs"

[[example]]
name = "listener_writer"
path = "examples/listener_writer.rs"

[[example]]
name = "primary_writer"
path = "examples/primary_writer.rs"

[[example]]
name = "replay_real_aof"
path = "examples/replay_real_aof.rs"

[[example]]
name = "replica"
path = "examples/replica.rs"

[[example]]
name = "scoped_writer"
path = "examples/scoped_writer.rs"

[[example]]
name = "set4k_bench"
path = "examples/set4k_bench.rs"

[[test]]
name = "dispatch_oracle"
path = "tests/dispatch_oracle.rs"

[[test]]
name = "embed_writer_e2e"
path = "tests/embed_writer_e2e.rs"

[[test]]
name = "listener_e2e"
path = "tests/listener_e2e.rs"

[[test]]
name = "scalar_values_clauses"
path = "tests/scalar_values_clauses.rs"

[[test]]
name = "server_replica_e2e"
path = "tests/server_replica_e2e.rs"

[[test]]
name = "tier_budget"
path = "tests/tier_budget.rs"

[[test]]
name = "tier_persistence"
path = "tests/tier_persistence.rs"

[[test]]
name = "tier_transparency"
path = "tests/tier_transparency.rs"

[[test]]
name = "ttl_incident_repro"
path = "tests/ttl_incident_repro.rs"

[dependencies.kevy-hash]
version = "4.0.0"

[dependencies.kevy-index]
version = "4.0.0"
optional = true

[dependencies.kevy-persist]
version = "4.0.0"
optional = true

[dependencies.kevy-replicate]
version = "4.0.0"
optional = true
default-features = false

[dependencies.kevy-resp]
version = "4.0.0"
optional = true

[dependencies.kevy-store]
version = "4.0.0"

[dependencies.kevy-text]
version = "4.0.0"
optional = true

[dependencies.kevy-vector]
version = "4.0.0"
optional = true

[dev-dependencies.kevy-rt]
version = "4.0.0"

[dev-dependencies.kevy-tmpdir]
version = "4.0.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.kevy-sys]
version = "4.0.0"
optional = true

[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"