X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Flib.rs;h=1fa7b21e06aaefbdc8b94c7a24bbfe71c55c392e;hb=755b76bf8393e444a348ce97196e68964b852346;hp=4a3ab27189da46f8ebac43eadbc8cf742ea082cf;hpb=4e05b107a3a42a770efb422b15f6cc4e49de2eac;p=rust-lightning diff --git a/src/lib.rs b/src/lib.rs index 4a3ab271..1fa7b21e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,11 +1,12 @@ #![crate_name = "lightning"] extern crate bitcoin; -extern crate secp256k1; -extern crate rand; extern crate crypto; -extern crate num; //TODO: Convince andrew to not rely on this for fucking casting... +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;