From 6d26a0c265a62450bb990f7354e92ff6332e451d Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 23 Apr 2024 00:04:52 +0000 Subject: [PATCH] Mark `io_extras` module as no-export (matching its `doc(hidden)`) --- lightning/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index ad51dbe18..b8e25db0b 100644 --- a/lightning/src/lib.rs +++ b/lightning/src/lib.rs @@ -95,7 +95,9 @@ pub use core2::io; #[cfg(not(feature = "std"))] #[doc(hidden)] -/// IO utilities public only for use by in-crate macros. These should not be used externally +/// IO utilities public only for use by in-crate macros. These should not be used externally. +/// +/// This is not exported to bindings users as its not intended for public consumption. pub mod io_extras { use core2::io::{self, Read, Write}; -- 2.39.5