diff options
| author | Maiddog <[email protected]> | 2017-08-24 07:45:29 -0500 |
|---|---|---|
| committer | alex <[email protected]> | 2017-08-24 14:45:29 +0200 |
| commit | 562ce49698a39d5da68d3ac58a3d8cf401aa9e42 (patch) | |
| tree | 09e24d0cda0c5f66fc3454a90fb9087958aa55cd /src/lib.rs | |
| parent | Apply rustfmt fixes (diff) | |
| download | serenity-562ce49698a39d5da68d3ac58a3d8cf401aa9e42.tar.xz serenity-562ce49698a39d5da68d3ac58a3d8cf401aa9e42.zip | |
Allow FromStr for User to use REST (#147)
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -85,7 +85,8 @@ //! [examples]: https://github.com/zeyla/serenity/tree/master/examples //! [gateway docs]: gateway/index.html #![doc(html_root_url = "https://docs.rs/serenity/*")] -#![allow(doc_markdown, inline_always, unknown_lints)] +#![allow(unknown_lints)] +#![allow(doc_markdown, inline_always)] #![warn(enum_glob_use, if_not_else)] #[macro_use] |