[package]
edition = "2024"
rust-version = "1.94"
name = "yo-kv"
version = "0.3.21"
authors = ["tamnd <tamnd87@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Redis data structures, as plain Rust types with no protocol attached"
homepage = "https://yo.tamnd.dev"
readme = "README.md"
keywords = [
"database",
"redis",
"embedded",
"key-value",
"storage",
]
categories = [
"database-implementations",
"data-structures",
"caching",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamnd/yo"
[lib]
name = "yo_kv"
path = "src/lib.rs"
[[example]]
name = "memprobe"
path = "examples/memprobe.rs"
[[test]]
name = "chain_on_the_log"
path = "tests/chain_on_the_log.rs"
[[test]]
name = "commands_over_a_demoted_body"
path = "tests/commands_over_a_demoted_body.rs"
[[test]]
name = "commands_over_a_demoted_value"
path = "tests/commands_over_a_demoted_value.rs"
[[bench]]
name = "elem"
path = "benches/elem.rs"
harness = false
[[bench]]
name = "grow"
path = "benches/grow.rs"
harness = false
[[bench]]
name = "intset"
path = "benches/intset.rs"
harness = false
[[bench]]
name = "list"
path = "benches/list.rs"
harness = false
[[bench]]
name = "listpack"
path = "benches/listpack.rs"
harness = false
[[bench]]
name = "orderkey"
path = "benches/orderkey.rs"
harness = false
[[bench]]
name = "parts"
path = "benches/parts.rs"
harness = false
[[bench]]
name = "rdb"
path = "benches/rdb.rs"
harness = false
[[bench]]
name = "setops"
path = "benches/setops.rs"
harness = false
[[bench]]
name = "stream"
path = "benches/stream.rs"
harness = false
[dependencies.yo-alloc]
version = "0.3.21"
[dependencies.yo-common]
version = "0.3.21"
[dependencies.yo-index]
version = "0.3.21"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.yo-format]
version = "0.3.21"
[dev-dependencies.yo-record]
version = "0.3.21"
[lints.clippy]
alloc_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]