1#![warn(rust_2018_idioms)] 2#![allow(dead_code)] 3#![recursion_limit = "256"] 4 5pub mod allocation; 6pub mod auth; 7pub mod client; 8mod error; 9pub mod proto; 10pub mod relay; 11pub mod server; 12 13pub use error::Error;