tracing-mutex 0.3.2

Ensure deadlock-free mutexes by allocating in order, or else.
Documentation
1
2
3
4
5
6
7
8
9
10
use autocfg::AutoCfg;

fn main() {
    // To avoid bumping MSRV unnecessarily, we can sniff certain features. Reevaluate this on major
    // releases.
    let ac = AutoCfg::new().unwrap();
    ac.emit_has_path("std::sync::LazyLock");

    autocfg::rerun_path("build.rs");
}