aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Lyon <[email protected]>2017-07-13 21:30:00 -0700
committeralex <[email protected]>2017-07-14 06:30:00 +0200
commit88765d0a978001ff88a1ee12798a725b7f5a90e9 (patch)
treed66970df218ac9e9c4aa3b038e56ee6ce7c81292 /src/lib.rs
parentFix the doc on `PrivateChannel::name` (diff)
downloadserenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.tar.xz
serenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.zip
Switch to tokio for events (#122)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 86e7523..42767c5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -104,9 +104,12 @@ extern crate base64;
extern crate chrono;
extern crate flate2;
extern crate serde;
+extern crate parking_lot;
#[cfg(feature="voice")]
extern crate byteorder;
+#[cfg(feature="futures")]
+extern crate futures;
#[cfg(feature="hyper")]
extern crate hyper;
#[cfg(feature="hyper-native-tls")]
@@ -119,6 +122,8 @@ extern crate native_tls;
extern crate opus;
#[cfg(feature="voice")]
extern crate sodiumoxide;
+#[cfg(feature="tokio-core")]
+extern crate tokio_core;
#[cfg(feature="client")]
extern crate typemap;
#[cfg(feature="gateway")]