anysystem 0.1.2

A framework for deterministic simulation and testing of distributed systems
Documentation
1
2
3
4
5
6
7
8
9
10
macro_rules! t {
    ($arg:expr) => (
        log::debug!("{}", $arg)
    );
    ($($arg:tt)+) => (
        log::debug!($($arg)+)
    );
}

pub(crate) use t;