rust-lightning/src/lib.rs
Antoine Riard 0029f04fce Logging interface
Implement error, warn, info, debug and trace macros, internally calling
an instance of Logger, and passing it to every main structures
Build-time or client-side filtering.
Issue #54
2018-08-17 00:01:15 +00:00

12 lines
202 B
Rust

#![crate_name = "lightning"]
extern crate bitcoin;
extern crate crypto;
extern crate rand;
extern crate secp256k1;
#[cfg(test)] extern crate hex;
#[macro_use]
pub mod util;
pub mod chain;
pub mod ln;