From eb2c5c69b630241e0d1be558b01d38a9f10a0c47 Mon Sep 17 00:00:00 2001 From: Cesar Eduardo Barros Date: Sat, 30 Jan 2016 10:37:40 -0200 Subject: [PATCH] Request warning for missing docs --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 8b13e6b..d98bd83 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,6 +7,8 @@ //! A pure Rust implementation of BLAKE2 based on RFC 7693. +#![warn(missing_docs)] + #![cfg_attr(feature = "clippy", feature(plugin))] #![cfg_attr(feature = "clippy", plugin(clippy))] #![cfg_attr(feature = "clippy", warn(clippy_pedantic))]