1 2 3 4 5 6 7 8 9 10 11
// Huge json!() macros require lots of recursion #![recursion_limit = "1024"] mod convert; pub mod pb; mod server; pub use crate::server::Server; #[cfg(test)] mod test;