# 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 = "2021" rust-version = "1.70" name = "tracing-mutex" version = "0.3.0" authors = ["Bert Peters "] description = "Ensure deadlock-free mutexes by allocating in order, or else." documentation = "https://docs.rs/tracing-mutex" readme = "README.md" keywords = [ "mutex", "rwlock", "once", "thread", ] categories = [ "concurrency", "development-tools::debugging", ] license = "MIT OR Apache-2.0" repository = "https://github.com/bertptrs/tracing-mutex" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [[bench]] name = "mutex" harness = false [dependencies.lock_api] version = "0.4" optional = true [dependencies.parking_lot] version = "0.12" optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.rand] version = "0.8" [features] backtraces = [] default = ["backtraces"] lockapi = ["lock_api"] parkinglot = [ "parking_lot", "lockapi", ]