mirror of
https://github.com/bertptrs/tracing-mutex.git
synced 2025-12-25 20:50:32 +01:00
19 lines
524 B
TOML
19 lines
524 B
TOML
[package]
|
|
name = "tracing-mutex"
|
|
version = "0.1.0"
|
|
authors = ["Bert Peters <bert@bertptrs.nl>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/tracing-mutex"
|
|
categories = ["concurrency", "development-tools::debugging"]
|
|
keywords = ["mutex", "rwlock", "once", "thread"]
|
|
description = "Ensure deadlock-free mutexes by allocating in order, or else."
|
|
readme = "README.md"
|
|
repository = "https://github.com/bertptrs/tracing-mutex"
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|