summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 53b2a51715789dd7717a1d45e827b633cd504f4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(test)]

extern crate jemallocator;

#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

mod constants;
mod handshake;
mod router;
mod types;

fn main() {}