Files
wireguard-rs/src/main.rs
2019-09-28 18:01:55 +02:00

19 lines
262 B
Rust

#![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() {}