lockbell 0.1.2

An RwLock that rings back when contention clears.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"