1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![forbid(unsafe_code)]
#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(unused_must_use)]

pub mod appender;
pub mod bencher;
pub mod consts;
pub mod error;
pub mod fast_log;
pub mod filter;
pub mod plugin;
pub mod runtime;
pub mod config;
pub mod date;

pub use crate::fast_log::*;
pub use runtime::*;
pub use crate::config::Config;