Move router to a separate module
[rust-lightning] / lightning / src / lib.rs
index 68924b57a36af64b7fc01b43efcb4733ca8f3dc7..23645ab189aec1c06de223a6a6cad88f1eeceaac 100644 (file)
@@ -19,8 +19,6 @@
 #![allow(ellipsis_inclusive_range_patterns)]
 
 extern crate bitcoin;
-extern crate bitcoin_hashes;
-extern crate secp256k1;
 #[cfg(test)] extern crate rand;
 #[cfg(test)] extern crate hex;
 
@@ -28,3 +26,5 @@ extern crate secp256k1;
 pub mod util;
 pub mod chain;
 pub mod ln;
+pub mod routing;
+