scidataflow 0.8.11

A command-line tool to manage scientific research project data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_export]
macro_rules! print_warn {
    ($($arg:tt)*) => {
        println!("{}: {}", "Warning".to_string().red().bold(), format!($($arg)*));
    };
}

#[macro_export]
macro_rules! print_info {
    ($($arg:tt)*) => {
        println!("{}: {}", "Info".to_string().green().bold(), format!($($arg)*));
    };
}