X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Flib.rs;h=1000966d5a5b8ecca943fc7b7c2ef9642b027b9b;hb=989cb064b5279da3c9e0f3a121637d8bbed81bfb;hp=2e6b3ab3c0a99cb2d438b15982ed954d4bd35e94;hpb=4e5381a50fa524cb183a3d92dee05cb4f2950255;p=rust-lightning diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index 2e6b3ab3..1000966d 100644 --- a/lightning/src/lib.rs +++ b/lightning/src/lib.rs @@ -39,7 +39,10 @@ #![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), deny(missing_docs))] #![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), forbid(unsafe_code))] + +// Prefix these with `rustdoc::` when we update our MSRV to be >= 1.52 to remove warnings. #![deny(broken_intra_doc_links)] +#![deny(private_intra_doc_links)] // In general, rust is absolutely horrid at supporting users doing things like, // for example, compiling Rust code for real environments. Disable useless lints @@ -76,8 +79,7 @@ pub mod util; pub mod chain; pub mod ln; pub mod routing; -#[allow(unused)] -mod onion_message; // To be exposed after sending/receiving OMs is supported in PeerManager. +pub mod onion_message; #[cfg(feature = "std")] /// Re-export of either `core2::io` or `std::io`, depending on the `std` feature flag.