diff options
| author | acdenisSK <[email protected]> | 2017-08-20 23:02:38 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-08-20 23:05:34 +0200 |
| commit | 45d72eff173d87b1353d8b5d001775cc49129dab (patch) | |
| tree | 5ecfdf54bbaeb597bd557c0307ddfd6392b7860e /src/lib.rs | |
| parent | Use wildcard (diff) | |
| download | serenity-45d72eff173d87b1353d8b5d001775cc49129dab.tar.xz serenity-45d72eff173d87b1353d8b5d001775cc49129dab.zip | |
Revamp the args to an `Args` struct
Fixes #142
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -106,6 +106,7 @@ extern crate chrono; extern crate flate2; extern crate serde; extern crate parking_lot; +extern crate vec_shift; #[cfg(feature = "voice")] extern crate byteorder; @@ -129,10 +130,6 @@ extern crate tokio_core; extern crate typemap; #[cfg(feature = "gateway")] extern crate websocket; -#[cfg(feature = "framework")] -extern crate regex; -#[cfg(feature = "framework")] -extern crate itertools; #[macro_use] mod internal; |