X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Flib.rs;h=668f752e6c261c455f36be6114f1597c70bb204b;hb=93afed56e8befba47199c19b4ca8263164eca36f;hp=2e6b3ab3c0a99cb2d438b15982ed954d4bd35e94;hpb=28c9b56113ff1ebb1b505a2c979c55c1626aa06b;p=rust-lightning diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index 2e6b3ab3..668f752e 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 @@ -75,9 +78,11 @@ extern crate core; pub mod util; pub mod chain; pub mod ln; +pub mod offers; pub mod routing; -#[allow(unused)] -mod onion_message; // To be exposed after sending/receiving OMs is supported in PeerManager. +pub mod onion_message; +pub mod blinded_path; +pub mod events; #[cfg(feature = "std")] /// Re-export of either `core2::io` or `std::io`, depending on the `std` feature flag. @@ -171,20 +176,7 @@ mod prelude { pub use alloc::string::ToString; } -#[cfg(all(feature = "std", test))] -mod debug_sync; -#[cfg(all(feature = "backtrace", feature = "std", test))] +#[cfg(all(not(feature = "_bench_unstable"), feature = "backtrace", feature = "std", test))] extern crate backtrace; -#[cfg(feature = "std")] -mod sync { - #[cfg(test)] - pub use debug_sync::*; - #[cfg(not(test))] - pub use ::std::sync::{Arc, Mutex, Condvar, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard}; - #[cfg(not(test))] - pub use crate::util::fairrwlock::FairRwLock; -} - -#[cfg(not(feature = "std"))] mod sync;