holochain_locksmith 0.0.52-alpha2

helpers for mutex deadlock diagnosis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(not(feature = "bypass"))]
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;

#[cfg(not(feature = "bypass"))]
mod locksmith;
#[cfg(not(feature = "bypass"))]
pub use locksmith::*;

#[cfg(feature = "bypass")]
mod bypass;
#[cfg(feature = "bypass")]
pub use bypass::*;

mod error;
pub use crate::error::LocksmithError;