print-run 0.1.2

A stylish procedural macro for tracing function execution with color, indentation, timestamps, and duration.
Documentation
1
2
3
4
5
6
7
8
9
//! A helper mock to hack doctests

#![doc(hidden)]
#![allow(unused)]

use std::cell::RefCell;
thread_local! {
    pub static DEPTH: RefCell<usize> = RefCell::new(0);
}