summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 26b39a2751e646cfcb7b395d10583ef0b558c251 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(test)]

extern crate jemallocator;

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

mod constants;
mod handshake;
mod router;
mod timers;
mod types;
mod wireguard;

#[test]
fn test_pure_wireguard() {}

fn main() {}