Enforce no missing docs in all crates (+ add docs that were missing)
[rust-lightning] / background-processor / src / lib.rs
index f6c2dbfcae064562bfdb96a41a30c891c0f49a16..286bfeddf155123668200e2d5971979bd558d714 100644 (file)
@@ -1,3 +1,11 @@
+//! Utilities that take care of tasks that (1) need to happen periodically to keep Rust-Lightning
+//! running properly, and (2) either can or should be run in the background. See docs for
+//! [`BackgroundProcessor`] for more details on the nitty-gritty.
+
+#![deny(broken_intra_doc_links)]
+#![deny(missing_docs)]
+#![deny(unsafe_code)]
+
 #[macro_use] extern crate lightning;
 
 use lightning::chain;