X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Flib.rs;h=ba6d6bc71910e53ad37236dc30b6e19cd947a4d9;hb=092d1c1f0df67b9a7c17d0424f1307d7395a7d22;hp=3f88a208e9d00da1976fafd6e42fbbf6c6ace030;hpb=1fd6c6fb9f7e58e8c0cf6539e7a9451e57a2b6fd;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 {