1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
pub mod date_time;
pub mod fs;
pub mod generator;
pub mod hash;
pub mod http;
pub mod ip;
pub mod panic;
pub mod process;
pub mod thread;

pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");

lazy_static! {
    pub static ref EMPTY_SLICE: &'static [u8] = &[];
    pub static ref EMPTY_VEC: Vec<u8> = Vec::with_capacity(0);
}