uts-core 0.1.0-alpha.0

Core types and traits for Univeral Timestamps in Rust
Documentation
#![allow(unused)]

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

#[cfg(not(feature = "tracing"))]
pub(crate) use noop_macro as debug;
#[cfg(not(feature = "tracing"))]
pub(crate) use noop_macro as error;
#[cfg(not(feature = "tracing"))]
pub(crate) use noop_macro as info;
#[cfg(not(feature = "tracing"))]
pub(crate) use noop_macro as trace;
#[cfg(not(feature = "tracing"))]
pub(crate) use noop_macro as warn;

#[cfg(feature = "tracing")]
pub use ::tracing::{debug, error, info, trace, warn};