[package]
edition = "2024"
name = "wepoch"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LightEpoch epoch protection for safe memory reclamation / 面向安全内存回收的纪元保护"
homepage = "https://github.com/webc-site/wedb/tree/main/wepoch"
readme = "README.md"
keywords = [
"epoch",
"smr",
"lock-free",
"memory-reclamation",
"concurrency",
]
categories = [
"concurrency",
"memory-management",
"data-structures",
"database-implementations",
"algorithms",
]
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 = "wepoch"
path = "src/lib.rs"
[[test]]
name = "epoch"
path = "tests/epoch/main.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.log]
version = "0.4.34"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.wbase]
version = "0.1.4"
features = [
"backoff",
"thread",
]
[dependencies.whasher]
version = "0.1.6"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.ctor]
version = "1.0.13"
[dev-dependencies.log_init]
version = "0.1.39"
[dev-dependencies.parking_lot]
version = "0.12.5"
[dev-dependencies.wram]
version = "0.1.3"
[lints.clippy]
arc_with_non_send_sync = "allow"