osdns 0.1.0

Safe, transactional control of operating-system DNS configuration
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "tracing")]
macro_rules! osdns_warn {
    ($($arg:tt)*) => { tracing::warn!($($arg)*) };
}

#[cfg(not(feature = "tracing"))]
macro_rules! osdns_warn {
    ($($arg:tt)*) => {{}};
}