From 8956d4cd5f8af43a395cf0e768ad54305fdcba6f Mon Sep 17 00:00:00 2001 From: arkpar Date: Thu, 26 Nov 2015 23:45:02 +0100 Subject: [PATCH] Added rand and mio --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 7d9212634..44ffc106f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,8 @@ extern crate rustc_serialize; +extern crate mio; +extern crate rand; +#[macro_use] +extern crate log; pub use std::str::FromStr; @@ -9,6 +13,8 @@ pub mod bytes; pub mod rlp; pub mod vector; +//pub mod network; + #[test] fn it_works() { }