summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2023-05-16 13:10:42 -0400
committerAndrew Gallant <jamslam@gmail.com>2023-05-16 13:10:42 -0400
commit6b19be24776db74dd2df0bdbd5f199a8cd9964ce (patch)
tree3a2e706f1beb663e3710f55d4a117a310b98d306
parent041544853c86dde91c49983e5ddd0aa799bd2831 (diff)
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
-rw-r--r--crates/grep/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/grep/src/lib.rs b/crates/grep/src/lib.rs
index 13eaee25..6c88bf7e 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")]