1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[allow(unused_macros, unused_imports)]
use quote::format_ident;
#[macro_export]
macro_rules! debug {
    ($($arg:tt)*) => {
        println!("cargo:warning={}", format_args!($($arg)*));
    };
}
#[macro_export]
macro_rules! fident {
    ($name:expr) => {
        format_ident!("{}", $name)
    };
}