[package]
edition = "2024"
rust-version = "1.88"
name = "lockbell"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An RwLock that rings back when contention clears."
homepage = "https://github.com/makcandrov/lockbell"
documentation = "https://docs.rs/lockbell"
readme = "README.md"
keywords = [
"lock",
"bell",
"rwlock",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/makcandrov/lockbell"
[lib]
name = "lockbell"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "guard_map"
path = "tests/guard_map.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[test]]
name = "read_write"
path = "tests/read_write.rs"
[[test]]
name = "write"
path = "tests/write.rs"
[dependencies.parking_lot]
version = "0.12"