aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-11-10 17:09:24 -0800
committerAustin Hellyer <[email protected]>2016-11-10 17:09:24 -0800
commitb0e1a70418a629eb1cc71339c9ca6dc2ae0ec2a1 (patch)
treedbea47d3cfcf983ba95411fd2e8af35f141cd807 /src/lib.rs
parentImplementing missing HTTP methods (diff)
downloadserenity-b0e1a70418a629eb1cc71339c9ca6dc2ae0ec2a1.tar.xz
serenity-b0e1a70418a629eb1cc71339c9ca6dc2ae0ec2a1.zip
Fix some clippy lints
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 689009c..c10836b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -74,8 +74,8 @@
//! [docs]: https://discordapp.com/developers/docs/intro
//! [examples]: https://github.com/zeyla/serenity.rs/tree/master/examples
//! [state docs]: ext/state/index.html
-#![allow(doc_markdown, unknown_lints)]
-#![allow(dead_code)]
+#![allow(doc_markdown, inline_always, unknown_lints)]
+#![warn(dead_code)]
#[macro_use]
extern crate bitflags;