aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMaiddog <[email protected]>2017-08-24 07:45:29 -0500
committeralex <[email protected]>2017-08-24 14:45:29 +0200
commit562ce49698a39d5da68d3ac58a3d8cf401aa9e42 (patch)
tree09e24d0cda0c5f66fc3454a90fb9087958aa55cd /src/lib.rs
parentApply rustfmt fixes (diff)
downloadserenity-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.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 230ab68..3893968 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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]