hot-lib-reloader 0.8.2

Utility to reload libraries on change. For faster feedback cycles.
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
macro_rules! info { ($($arg:tt)+) => (println!("[INFO] {}", format!($($arg)+))) }
#[macro_export]
macro_rules! debug { ($($arg:tt)+) => (println!("[DEBUG] {}", format!($($arg)+))) }
#[macro_export]
macro_rules! trace { ($($arg:tt)+) => (println!("[TRACE] {}", format!($($arg)+))) }
#[macro_export]
macro_rules! warn_ { ($($arg:tt)+) => (println!("[WARN] {}", format!($($arg)+))) }
#[macro_export]
macro_rules! error { ($($arg:tt)+) => (println!("[ERROR] {}", format!($($arg)+))) }