From 6b19be24776db74dd2df0bdbd5f199a8cd9964ce Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Tue, 16 May 2023 13:10:42 -0400 Subject: [PATCH] crates/grep: remove 'deny(missing_docs)' This crate is only a shim over a bunch of other crates. I'm not sure that there's anything to add to each of the `pub extern` items. So instead of just writing fluff, I removed the lint. Fixes #2516 --- crates/grep/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/grep/src/lib.rs b/crates/grep/src/lib.rs index 13eaee2..6c88bf7 100644 --- a/crates/grep/src/lib.rs +++ b/crates/grep/src/lib.rs @@ -12,8 +12,6 @@ are sparse. A cookbook and a guide are planned. */ -#![deny(missing_docs)] - pub extern crate grep_cli as cli; pub extern crate grep_matcher as matcher; #[cfg(feature = "pcre2")]