]> git.lizzy.rs Git - enumset.git/blobdiff - enumset/src/lib.rs
Suppress certain clippy warnings. Fixes #28.
[enumset.git] / enumset / src / lib.rs
index f6c04ce31a67ba09c7fa2403976335ebb42d7605..cc3fce984a6b0b7dd667460208f83def34a446c1 100644 (file)
@@ -1,6 +1,9 @@
 #![no_std]
 #![forbid(missing_docs)]
 
+// The safety requirement is "use the procedural derive".
+#![allow(clippy::missing_safety_doc)]
+
 //! A library for defining enums that can be used in compact bit sets. It supports enums up to 128
 //! variants, and has a macro to use these sets in constants.
 //!