mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 23:30:59 +01:00
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
12 lines
202 B
Rust
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;
|