maturin 1.15.0

Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages
Documentation
//! User-facing output facade.
//!
//! This is the single seam for later `--quiet` and JSON output support, introduced by
//! the refactor plan item "Route user-facing output through a small facade".

macro_rules! status {
    ($($arg:tt)*) => {
        eprintln!($($arg)*)
    };
}

macro_rules! warning {
    ($($arg:tt)*) => {
        eprintln!($($arg)*)
    };
}

pub(crate) use status;
pub(crate) use warning;