quincy 2.0.0-rc.3

QUIC-based VPN - Core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(all(feature = "jemalloc", unix))]
use jemallocator::Jemalloc;

#[cfg(all(feature = "jemalloc", unix))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

pub mod certificates;
pub mod config;
pub mod constants;
pub mod error;
pub mod ip_assignment;
pub mod network;
pub mod utils;

// Re-export common types for convenience
pub use error::{QuincyError, Result};