identifiers: Change deny attribute to warn

This commit is contained in:
Jonas Platte 2020-07-24 21:15:04 +02:00
parent 85e2ae3d48
commit 617a40e3e9
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -1,8 +1,12 @@
//! Crate **ruma_identifiers** contains types for [Matrix](https://matrix.org/) identifiers //! Crate **ruma_identifiers** contains types for [Matrix](https://matrix.org/) identifiers
//! for events, rooms, room aliases, room versions, and users. //! for events, rooms, room aliases, room versions, and users.
#![warn(rust_2018_idioms)] #![warn(
#![deny(missing_copy_implementations, missing_debug_implementations, missing_docs)] rust_2018_idioms,
missing_copy_implementations,
missing_debug_implementations,
missing_docs
)]
// Since we support Rust 1.36.0, we can't apply this suggestion yet // Since we support Rust 1.36.0, we can't apply this suggestion yet
#![allow(clippy::use_self)] #![allow(clippy::use_self)]
#![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(docsrs, feature(doc_cfg))]