[package]
edition = "2024"
name = "wkv"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Single-node hybrid-log storage engine with TTL, GC, checkpoints, range index"
homepage = "https://github.com/webc-site/wedb/tree/main/wkv"
readme = "README.md"
keywords = [
"key-value",
"storage-engine",
"hybridlog",
"database",
"embedded",
]
categories = [
"database-implementations",
"data-structures",
"concurrency",
"asynchronous",
"caching",
]
license = "MulanPSL-2.0"
repository = "https://github.com/webc-site/wedb.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "wkv"
path = "src/lib.rs"
[[test]]
name = "capacity"
path = "tests/capacity.rs"
[[test]]
name = "checkpoint"
path = "tests/checkpoint/main.rs"
[[test]]
name = "compact"
path = "tests/compact/main.rs"
[[test]]
name = "config_defaults"
path = "tests/config_defaults.rs"
[[test]]
name = "gc"
path = "tests/gc.rs"
[[test]]
name = "hash_ttl"
path = "tests/hash_ttl.rs"
[[test]]
name = "keyspace"
path = "tests/keyspace.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "range_index"
path = "tests/range_index.rs"
[[test]]
name = "range_index_scan"
path = "tests/range_index_scan.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[[test]]
name = "ttl"
path = "tests/ttl.rs"
[[test]]
name = "ttl_purge"
path = "tests/ttl_purge.rs"
[dependencies.compio]
version = "0.19.2"
features = [
"runtime",
"time",
]
[dependencies.fastrand]
version = "2.5.0"
[dependencies.futures-util]
version = "0.3.34"
features = ["alloc"]
default-features = false
[dependencies.itoa]
version = "1.0.18"
[dependencies.log]
version = "0.4.34"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.wbase]
version = "0.1.5"
features = [
"addr",
"align",
"crc",
"time",
"error",
]
[dependencies.wbftree]
version = "0.1.4"
[dependencies.wcompact]
version = "0.1.2"
[dependencies.wcpr]
version = "0.1.2"
[dependencies.wdev]
version = "0.1.3"
[dependencies.wepoch]
version = "0.1.3"
[dependencies.whasher]
version = "0.1.6"
[dependencies.whlog]
version = "0.1.3"
[dependencies.windex]
version = "0.1.2"
[dependencies.wrecord]
version = "0.1.3"
[dependencies.wreviv]
version = "0.1.2"
[dependencies.wval]
version = "0.1.2"
[dependencies.zmij]
version = "1.0.23"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.ctor]
version = "1.0.13"
[dev-dependencies.fastrand]
version = "2.5.0"
[dev-dependencies.log]
version = "0.4.34"
[dev-dependencies.log_init]
version = "0.1.39"
[dev-dependencies.sonic-rs]
version = "0.5.8"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
arc_with_non_send_sync = "allow"