rust-lightning/src/lib.rs

13 lines
202 B
Rust
Raw Normal View History

2017-12-25 01:05:27 -05:00
#![crate_name = "lightning"]
extern crate bitcoin;
extern crate crypto;
2018-07-24 13:05:43 -07:00
extern crate rand;
extern crate secp256k1;
#[cfg(test)] extern crate hex;
2017-12-25 01:05:27 -05:00
#[macro_use]
pub mod util;
2017-12-25 01:05:27 -05:00
pub mod chain;
pub mod ln;