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.
|
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
|
2018-09-19 17:39:43 -04:00
|
|
|
//! 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))]
|
2019-07-24 07:51:11 +02:00
|
|
|
#![forbid(unsafe_code)]
|
2018-09-19 17:39:43 -04:00
|
|
|
|
2019-10-28 15:21:12 -04:00
|
|
|
// In general, rust is absolutely horrid at supporting users doing things like,
|
|
|
|
// for example, compiling Rust code for real environments. Disable useless lints
|
|
|
|
// that don't do anything but annoy us and cant actually ever be resolved.
|
|
|
|
#![allow(bare_trait_objects)]
|
|
|
|
#![allow(ellipsis_inclusive_range_patterns)]
|
|
|
|
|
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 secp256k1;
|
2019-07-18 22:21:00 -04:00
|
|
|
#[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
|
|
|
|
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;
|