mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-10 09:34:22 +01:00
12 lines
172 B
Rust
12 lines
172 B
Rust
// 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;
|