X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Flib.rs;h=ba6d6bc71910e53ad37236dc30b6e19cd947a4d9;hb=c8fb859ad6889c67f675052140cf817052542872;hp=3f88a208e9d00da1976fafd6e42fbbf6c6ace030;hpb=08ab6581f1c6254a7765340c5c7a553db58d3a89;p=rust-lightning diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index 3f88a208..ba6d6bc7 100644 --- a/lightning/src/lib.rs +++ b/lightning/src/lib.rs @@ -78,9 +78,11 @@ pub mod ln; pub mod routing; #[cfg(feature = "std")] -use std::io; +/// Re-export of either `core2::io` or `std::io`, depending on the `std` feature flag. +pub use std::io; #[cfg(not(feature = "std"))] -use core2::io; +/// Re-export of either `core2::io` or `std::io`, depending on the `std` feature flag. +pub use core2::io; #[cfg(not(feature = "std"))] mod io_extras {