zenjxl-decoder 0.3.8

High performance Rust implementation of a JPEG XL decoder
Documentation
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#![allow(unused_imports)]

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

#[cfg(not(feature = "tracing"))]
mod private {
    macro_rules! fake_log {
        ($($_: tt)*) => {};
    }
    pub(crate) use fake_log as debug;
    pub(crate) use fake_log as error;
    pub(crate) use fake_log as info;
    pub(crate) use fake_log as trace;
    pub(crate) use fake_log as warn;
    pub use jxl_macros::noop as instrument;
}

pub use private::*;