From 70cd60f0fcfb2afcbce59754b76c000ccbb73511 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Sat, 29 Jun 2019 13:32:23 +0200 Subject: [PATCH] disable warns Signed-off-by: Yoshua Wuyts --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78a0810..c08ea43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] log = "0.4.6" -backtrace = "0.3.30" +backtrace = "0.3.32" async-log-attributes = { path = "async-log-attributes", version = "1.0.1" } [dev-dependencies] diff --git a/src/lib.rs b/src/lib.rs index ab39854..afdd469 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -108,7 +108,7 @@ #![forbid(unsafe_code, future_incompatible, rust_2018_idioms)] #![deny(missing_debug_implementations, nonstandard_style)] -#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)] +#![warn(missing_docs, unreachable_pub)] #![cfg_attr(test, deny(warnings))] pub use async_log_attributes::instrument;