diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-03-08 18:10:59 -0500 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-03-08 18:10:59 -0500 |
| commit | 108db50a7374a785f309e049b287e9b47532f566 (patch) | |
| tree | d25be7765dcf79e259fd431a0bf3bc0979da0ce1 /src/main.rs | |
| parent | 86025df1f6d814c98a14211ceb4da6cf6de915c7 (diff) | |
working version
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 598b94f..1577c89 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ #![feature(try_trait)] #![feature(pattern)] #![feature(concat_idents)] +#![feature(associated_type_defaults)] #![feature(box_syntax, box_patterns)] @@ -18,8 +19,6 @@ extern crate fnv; #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; #[macro_use] extern crate nom; -#[cfg(feature = "games")] -extern crate oauth2; extern crate rand; extern crate regex; extern crate reqwest; |
