[dependencies.backtrace]
version = "0.3"
[dependencies.parking_lot]
optional = true
version = "0.12"
[dependencies.simple_moving_average]
version = "1"
[dependencies.tokio]
features = ["sync"]
optional = true
version = "1"
[dependencies.tracing]
default-features = false
features = ["std"]
optional = true
version = "0.1"
[dev-dependencies.serial_test]
default-features = false
features = ["async"]
version = "3"
[dev-dependencies.tokio]
features = ["macros", "rt"]
version = "1"
[features]
default = ["std"]
parking_lot = ["dep:parking_lot"]
std = []
test = []
tokio = ["dep:tokio"]
tracing = ["dep:tracing"]
[lib]
name = "locktick"
path = "src/lib.rs"
[package]
authors = ["ljedrz <ljedrz@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "development-tools"]
description = "Automated lock accounting & profiling"
documentation = "https://docs.rs/locktick"
edition = "2021"
keywords = ["deadlock", "lock", "profiling", "utility"]
license = "CC0-1.0"
name = "locktick"
readme = "README.md"
repository = "https://github.com/ljedrz/locktick"
rust-version = "1.80"
version = "0.5.0"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "parking_lot"
path = "tests/parking_lot.rs"
[[test]]
name = "std"
path = "tests/std.rs"
[[test]]
name = "tokio"
path = "tests/tokio.rs"