diff options
| author | Alex Lyon <[email protected]> | 2017-07-13 21:30:00 -0700 |
|---|---|---|
| committer | alex <[email protected]> | 2017-07-14 06:30:00 +0200 |
| commit | 88765d0a978001ff88a1ee12798a725b7f5a90e9 (patch) | |
| tree | d66970df218ac9e9c4aa3b038e56ee6ce7c81292 /src/lib.rs | |
| parent | Fix the doc on `PrivateChannel::name` (diff) | |
| download | serenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.tar.xz serenity-88765d0a978001ff88a1ee12798a725b7f5a90e9.zip | |
Switch to tokio for events (#122)
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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")] |