X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Flib.rs;h=5564a575f8c8aae8ba8c37f600c8b587dfd4412a;hb=09c7f2f641d2496c2a6280b032f62b6249298a0f;hp=c01321776e0ae043f7570a186e876ed305a2120c;hpb=770740dbcc581ab3ccbc3426d5c5ea10a4659317;p=rust-lightning diff --git a/src/lib.rs b/src/lib.rs index c0132177..5564a575 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,24 @@ #![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. +//! 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))] + extern crate bitcoin; -extern crate secp256k1; -extern crate rand; +extern crate bitcoin_hashes; 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; -pub mod util;