aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJake McGinty <me@jake.su>2018-06-01 23:01:17 -0500
committerJake McGinty <me@jake.su>2018-06-01 23:01:17 -0500
commitd834918f6fe28f1c48f2846961d95dbde48f18e7 (patch)
tree0028013469f2fd022336ac9bf9d66b958b9080ca /src/lib.rs
parentuse unbounded_send in thread pool (diff)
downloadwireguard-rs-d834918f6fe28f1c48f2846961d95dbde48f18e7.tar.xz
wireguard-rs-d834918f6fe28f1c48f2846961d95dbde48f18e7.zip
follow crossbeam directions to see if perf improves
Diffstat (limited to '')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0fb68f3..106124d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,19 +9,19 @@
#![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;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
#[macro_use] extern crate tokio_core;
-
extern crate base64;
extern crate blake2_rfc;
extern crate byteorder;
extern crate bytes;
extern crate chacha20_poly1305_aead;
-extern crate crossbeam_channel;
+extern crate crossbeam;
extern crate hex;
extern crate libc;
extern crate mio;