diff options
| author | acdenisSK <[email protected]> | 2018-11-21 18:21:20 +0100 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2018-11-21 18:21:20 +0100 |
| commit | f148326056c39faf2601c47c8fa88f6081171b08 (patch) | |
| tree | 0643f6c62ba7e06ce791c9701235ab07561d7b38 /src/lib.rs | |
| parent | Replace `hyper` with `reqwest` (#440) (diff) | |
| download | serenity-f148326056c39faf2601c47c8fa88f6081171b08.tar.xz serenity-f148326056c39faf2601c47c8fa88f6081171b08.zip | |
Switch to tungstenite from rust-websocket (#341)
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -145,10 +145,12 @@ extern crate rand; extern crate sodiumoxide; #[cfg(feature = "threadpool")] extern crate threadpool; +#[cfg(feature = "tungstenite")] +extern crate tungstenite; #[cfg(feature = "typemap")] extern crate typemap; -#[cfg(feature = "evzht9h3nznqzwl")] -extern crate evzht9h3nznqzwl as websocket; +#[cfg(feature = "url")] +extern crate url; #[allow(unused_imports)] #[cfg(test)] |