[package]
edition = "2021"
rust-version = "1.82"
name = "happylock"
version = "0.5.1"
authors = ["Mica White <botahamec@outlook.com>"]
build = false
include = [
"src/**/*",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Free deadlock prevention"
documentation = "https://docs.rs/happylock"
readme = "README.md"
keywords = [
"deadlock",
"mutex",
"rwlock",
]
categories = ["concurrency"]
license = "CC0-1.0"
repository = "https://www.botahamec.dev/cgit/happylock"
[features]
default = ["parking_lot"]
[lib]
name = "happylock"
path = "src/lib.rs"
[dependencies.lock_api]
version = "0.4"
[dependencies.mutants]
version = "0.0.3"
[dependencies.parking_lot]
version = "0.12"
optional = true
[dependencies.spin]
version = "0.9"
optional = true
[dev-dependencies.parking_lot]
version = "0.12"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]