[package]
edition = "2024"
name = "wbftree"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BfTree ordered range index with multi-tree registry and chunked migration / BfTree 有序范围索引,含多树注册表与分块迁移"
homepage = "https://github.com/webc-site/wedb/tree/main/wbftree"
readme = "README.md"
keywords = [
"bftree",
"range-index",
"ordered-index",
"storage-engine",
"key-value",
]
categories = [
"database-implementations",
"data-structures",
"asynchronous",
"caching",
"concurrency",
]
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 = "wbftree"
path = "src/lib.rs"
[[test]]
name = "chunked_serializer"
path = "tests/chunked_serializer/main.rs"
[[test]]
name = "interop"
path = "tests/interop/main.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "manager_and_stub"
path = "tests/manager_and_stub/main.rs"
[dependencies.bf-tree]
version = "0.5.6"
[dependencies.fastrand]
version = "2.5.0"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.wbase]
version = "0.1.3"
features = [
"align",
"backoff",
"base32",
"striped",
"time",
]
[dependencies.whasher]
version = "0.1.5"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.compio]
version = "0.19.2"
features = ["time"]
[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"
[lints.clippy]
arc_with_non_send_sync = "allow"