X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Flib.rs;h=06ce7eb2075574df38c2b9cbf44813235e1fba1c;hb=HEAD;hp=c6e4708a8ebadb933e794889d1378e6b34f24fdf;hpb=bdbf5666a9d693b9bf11a9e66efe72e5782d82a6;p=rust-lightning diff --git a/src/lib.rs b/src/lib.rs deleted file mode 100644 index c6e4708a..00000000 --- a/src/lib.rs +++ /dev/null @@ -1,24 +0,0 @@ -#![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 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))] -#![forbid(unsafe_code)] - -extern crate bitcoin; -extern crate bitcoin_hashes; -extern crate secp256k1; -#[cfg(test)] extern crate rand; -#[cfg(test)] extern crate hex; - -#[macro_use] -pub mod util; -pub mod chain; -pub mod ln;