[[example]]
name = "raw"
path = "examples/raw.rs"
[features]
yield = []
[lib]
name = "clhlock"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(tarpaulin)", "cfg(tarpaulin_include)", "cfg(loom)", "cfg(ignore_leaks)"]
level = "warn"
priority = 0
[package]
authors = ["Pedro de Matos Fedricci <pedromfedricci@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["algorithms", "concurrency", "no-std"]
description = """
An implementation of Craig and, indenpendently, Magnussen, Landin, and
Hagersten queue lock for mutual exclusion, referred to as CLH lock.
"""
documentation = "https://docs.rs/clhlock"
edition = "2021"
keywords = ["mutex", "no_std", "spinlock", "synchronization"]
license = "MIT OR Apache-2.0"
name = "clhlock"
readme = "README.md"
repository = "https://github.com/pedromfedricci/clhlock"
rust-version = "1.65.0"
version = "0.2.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(loom)".dev-dependencies.loom]
version = "0.7"