identifiers: Change deny attribute to warn
This commit is contained in:
parent
85e2ae3d48
commit
617a40e3e9
@ -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))]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user