aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-17 07:40:23 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 11:40:58 +0200
commit0f2d667eb08762b744ef5a18d6c09f99c9c1b8bb (patch)
treec584d764332c14e106209eb99161647973d72e33
parentbec70ad5c493cd85a4c972cf917f455ace1a88d0 (diff)
chore: demote missing_docs lint to warn
`#![deny(missing_docs)]` makes `cargo test` abort immediately if any public API member is missing a doc comment ... which is quite annoying when experimenting with API designs. Also sometimes refactor commits (such as the very next commit) introduce new types that are then immediately removed afterwards, this should be possible without having to add a `/// TODO``` (which contrary to a compiler warning is easy to miss).
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 12326ec..12eb6a2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![deny(missing_docs)]
+#![warn(missing_docs)]
// This is an HTML parser. HTML can be untrusted input from the internet.
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]