diff options
| author | Lakelezz <[email protected]> | 2017-08-13 15:13:13 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2017-08-13 15:13:13 +0200 |
| commit | 069df4f85d8c462df58c1fce00595462f2825337 (patch) | |
| tree | fdfc25d1942f3ededc0d4b87b03396318b46e564 /src/lib.rs | |
| parent | Trim a second time for a sake (diff) | |
| download | serenity-069df4f85d8c462df58c1fce00595462f2825337.tar.xz serenity-069df4f85d8c462df58c1fce00595462f2825337.zip | |
Fix string delimiters (#134)
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -128,6 +128,10 @@ 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; |