Change some lint attributes from deny to warn

This commit is contained in:
Jonas Platte 2020-04-22 01:20:47 +02:00
parent 4a7513eeb5
commit d30e035d41
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -110,8 +110,7 @@
//! because *m.room.message* implements a *more specific* event trait than `Event`.
#![recursion_limit = "1024"]
#![warn(rust_2018_idioms)]
#![deny(missing_debug_implementations, missing_docs)]
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
// Since we support Rust 1.36.0, we can't apply this suggestion yet
#![allow(clippy::use_self)]