baseview 0.3.0

Low-level windowing system geared towards making audio plugin UIs.
Documentation
#[cfg(feature = "tracing")]
#[allow(unused)]
pub use tracing::{error, warn};

#[cfg(not(feature = "tracing"))]
#[allow(unused)]
mod tracing_impl {
    macro_rules! __warn {
        ($($f:tt)*) => {
            {
                #[allow(unused, dead_code)]
                let _ = ($($f)*);
            }
        };
    }

    pub(crate) use __warn as warn;
    pub(crate) use __warn as error;
}

#[cfg(not(feature = "tracing"))]
pub(crate) use tracing_impl::*;