[package]
edition = "2024"
name = "wval"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redis value layer: namespace encoding, collection codecs, glob, TTL"
homepage = "https://github.com/webc-site/wedb/tree/main/wval"
readme = "README.md"
keywords = [
"redis",
"value-encoding",
"codec",
"collections",
"zset",
]
categories = [
"database-implementations",
"encoding",
"data-structures",
"algorithms",
"caching",
]
license = "MulanPSL-2.0"
repository = "https://github.com/webc-site/wedb.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "wval"
path = "src/lib.rs"
[[test]]
name = "compact_codecs"
path = "tests/compact_codecs.rs"
[[test]]
name = "meta_and_subkey"
path = "tests/meta_and_subkey.rs"
[[test]]
name = "ns_codec"
path = "tests/ns_codec.rs"
[[test]]
name = "round2_boundary"
path = "tests/round2_boundary.rs"
[[test]]
name = "sample"
path = "tests/sample.rs"
[[test]]
name = "tag"
path = "tests/tag.rs"
[[test]]
name = "zset_codec"
path = "tests/zset_codec.rs"
[dependencies.bitcode]
version = "0.6.9"
[dependencies.fastrand]
version = "2.5.0"
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.20"
[dependencies.wbase]
version = "0.1.5"
features = [
"buf",
"float",
"glob",
"simd",
"varint",
]
[dependencies.whasher]
version = "0.1.6"
[dependencies.wrecord]
version = "0.1.3"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.ctor]
version = "1.0.13"
[dev-dependencies.log]
version = "0.4.34"
[dev-dependencies.log_init]
version = "0.1.39"
[lints.clippy]
arc_with_non_send_sync = "allow"