1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(not(target_env = "msvc"))]
use jemallocator::Jemalloc;

#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

pub mod auth;
pub mod client;
pub mod config;
pub mod constants;
pub mod interface;
pub mod server;
pub mod utils;