Merge pull request #2607 from DhananjayPurohit/civkit-branch
[rust-lightning] / lightning-persister / src / lib.rs
1 //! Provides utilities for LDK data persistence and retrieval.
2 //
3 // TODO: Prefix these with `rustdoc::` when we update our MSRV to be >= 1.52 to remove warnings.
4 #![deny(broken_intra_doc_links)]
5 #![deny(private_intra_doc_links)]
6
7 #![deny(missing_docs)]
8
9 #![cfg_attr(docsrs, feature(doc_auto_cfg))]
10
11 #[cfg(ldk_bench)] extern crate criterion;
12
13 pub mod fs_store;
14
15 mod utils;
16
17 #[cfg(test)]
18 mod test_utils;