aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9031322..0fb68f3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -21,12 +21,13 @@ extern crate blake2_rfc;
extern crate byteorder;
extern crate bytes;
extern crate chacha20_poly1305_aead;
-extern crate futures_cpupool;
+extern crate crossbeam_channel;
extern crate hex;
extern crate libc;
extern crate mio;
extern crate nix;
extern crate notify;
+extern crate num_cpus;
extern crate pnet_packet;
extern crate rand;
extern crate snow;
@@ -50,6 +51,7 @@ pub mod types;
mod anti_replay;
mod consts;
mod cookie;
+mod crypto_pool;
mod error;
mod ip_packet;
mod message;