rust-lightning/src/lib.rs

24 lines
890 B
Rust
Raw Normal View History

2017-12-25 01:05:27 -05:00
#![crate_name = "lightning"]
//! 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.
2019-01-24 16:41:51 +02:00
//! This means there is no built-in threading/execution environment and it's 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;
extern crate bitcoin_hashes;
2018-07-24 13:05:43 -07:00
extern crate secp256k1;
#[cfg(test)] extern crate rand;
2018-07-24 13:05:43 -07:00
#[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;