proofman-verifier 1.1.0-alpha

STARK proof verifier with Poseidon transcripts for the PIL2 proofman framework
#[cfg(feature = "std")]
macro_rules! v_debug {
    ($($arg:tt)*) => { tracing::debug!($($arg)*) };
}

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

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

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