diff options
| author | Zeyla Hellyer <[email protected]> | 2017-10-17 15:53:41 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-10-17 15:53:41 -0700 |
| commit | 9115dadb78404d332630ff47472a5c7218e72022 (patch) | |
| tree | 1b11ea1b6db3b2aeab09d9b61d4373fe83f389bc /src/lib.rs | |
| parent | Change `features` fields to be a Vec<String> (diff) | |
| download | serenity-9115dadb78404d332630ff47472a5c7218e72022.tar.xz serenity-9115dadb78404d332630ff47472a5c7218e72022.zip | |
Fix some compilation feature targets, fix lints
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -104,6 +104,7 @@ extern crate serde_json; extern crate lazy_static; extern crate chrono; +extern crate parking_lot; extern crate serde; #[cfg(feature = "base64")] @@ -122,8 +123,6 @@ extern crate multipart; extern crate native_tls; #[cfg(feature = "opus")] extern crate opus; -#[cfg(feature = "parking_lot")] -extern crate parking_lot; #[cfg(feature = "sodiumoxide")] extern crate sodiumoxide; #[cfg(feature = "threadpool")] |