aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-08-20 23:02:38 +0200
committeracdenisSK <[email protected]>2017-08-20 23:05:34 +0200
commit45d72eff173d87b1353d8b5d001775cc49129dab (patch)
tree5ecfdf54bbaeb597bd557c0307ddfd6392b7860e /src/lib.rs
parentUse wildcard (diff)
downloadserenity-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.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f3f03df..c7bf8d9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;