forbid unsafe
[rust-lightning] / src / util / mod.rs
index 2244f9b2fa44e1fb72c3fbf5c8feda1ce883dac0..aab77035d387d452d469067329e6db9ad77a69e2 100644 (file)
@@ -1,11 +1,14 @@
+//! Some utility modules live here. See individual sub-modules for more info.
+
 pub mod events;
 pub mod errors;
 pub mod ser;
 
 pub(crate) mod byte_utils;
+pub(crate) mod chacha20;
+#[cfg(not(feature = "fuzztarget"))]
+pub(crate) mod poly1305;
 pub(crate) mod chacha20poly1305rfc;
-pub(crate) mod internal_traits;
-pub(crate) mod rng;
 pub(crate) mod transaction_utils;
 
 #[macro_use]
@@ -13,16 +16,12 @@ pub(crate) mod ser_macros;
 #[macro_use]
 pub(crate) mod macro_logger;
 
-// Logger has to come after macro_logger for tests to build:
+// These have to come after macro_logger to build
 pub mod logger;
-
-#[cfg(feature = "fuzztarget")]
-pub mod sha2;
-#[cfg(not(feature = "fuzztarget"))]
-pub(crate) mod sha2;
-
-#[cfg(feature = "fuzztarget")]
-pub use self::rng::reset_rng_state;
+pub mod config;
 
 #[cfg(test)]
 pub(crate) mod test_utils;
+
+#[macro_use]
+pub(crate) mod fuzz_wrappers;