[package]
edition = "2024"
name = "windex"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free fixed-capacity hash index with overflow bucket pool / 无锁定容哈希索引,含溢出桶池"
homepage = "https://github.com/webc-site/wedb"
readme = "README.md"
keywords = [
"hash-index",
"lock-free",
"hash-table",
"storage-engine",
"concurrency",
]
categories = [
"database-implementations",
"data-structures",
"concurrency",
"algorithms",
"memory-management",
]
license = "MulanPSL-2.0"
repository = "https://github.com/webc-site/wedb"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "windex"
path = "src/lib.rs"
[[test]]
name = "index"
path = "tests/index/main.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.wbase]
version = "0.1.2"
features = ["addr"]
[dependencies.whasher]
version = "0.1.4"
[dependencies.wram]
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"