aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJake McGinty <me@jake.su>2018-06-24 00:37:46 +0800
committerJake McGinty <me@jake.su>2018-06-24 00:37:46 +0800
commita2caa612a3c983da76cd6ef080c7c13c9724ff82 (patch)
treee137b96db26f24694d1130268158e2b01586be28 /src/lib.rs
parentclean stuff up a bit (diff)
downloadwireguard-rs-a2caa612a3c983da76cd6ef080c7c13c9724ff82.tar.xz
wireguard-rs-a2caa612a3c983da76cd6ef080c7c13c9724ff82.zip
update dependencies and strategyjm/multithread-crossbeam
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 106124d..9ebaebb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,7 +9,6 @@
#![cfg_attr(feature = "cargo-clippy", allow(unreadable_literal))]
#![cfg_attr(feature = "cargo-clippy", allow(decimal_literal_representation))]
-#[macro_use] extern crate crossbeam_channel;
#[macro_use] extern crate derive_deref;
#[macro_use] extern crate failure;
#[macro_use] extern crate futures;
@@ -22,6 +21,7 @@ extern crate byteorder;
extern crate bytes;
extern crate chacha20_poly1305_aead;
extern crate crossbeam;
+extern crate crossbeam_channel;
extern crate hex;
extern crate libc;
extern crate mio;