#![warn(clippy::all)]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "safe", forbid(unsafe_code))]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
#[cfg(all(feature = "std", feature = "no-std"))]
compile_error!("You can't enable the `std` and `no-std` features at the same time.");
#[cfg(all(feature = "safe", feature = "unsafe"))]
compile_error!("You can't enable the `safe` and `unsafe` features at the same time.");
pub use ::log as log_crate;
pub mod error;
pub mod logger;
pub mod timer;
#[doc(inline)]
pub use logger::*;
pub mod all {
#[doc(inline)]
pub use super::{error::*, logger::*, timer::*};
pub use super::log_crate::{debug, error, info, log, trace, warn, Level, LevelFilter};
}