2017-12-25 01:05:27 -05:00
|
|
|
#![crate_name = "lightning"]
|
|
|
|
|
2018-09-19 17:39:43 -04:00
|
|
|
//! Rust-Lightning, not Rusty's Lightning!
|
|
|
|
//!
|
|
|
|
//! A full-featured but also flexible lightning implementation, in library form. This allows the
|
|
|
|
//! user (you) to decide how they wish to use it instead of being a fully self-contained daemon.
|
|
|
|
//! This means there is no built-in threading/execution environment and its up to the user to
|
|
|
|
//! figure out how best to make networking happen/timers fire/things get written to disk/keys get
|
|
|
|
//! generated/etc. This makes it a good candidate for tight integration into an existing wallet
|
|
|
|
//! instead of having a rather-separate lightning appendage to a wallet.
|
|
|
|
|
|
|
|
#![cfg_attr(not(feature = "fuzztarget"), deny(missing_docs))]
|
|
|
|
|
2017-12-25 01:05:27 -05:00
|
|
|
extern crate bitcoin;
|
2018-12-17 23:58:02 -05:00
|
|
|
extern crate bitcoin_hashes;
|
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
|
|
|
|
2018-07-25 02:34:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod util;
|
2017-12-25 01:05:27 -05:00
|
|
|
pub mod chain;
|
|
|
|
pub mod ln;
|