aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-07-08 21:42:25 -0400
committerAndrew Gallant <jamslam@gmail.com>2017-07-09 14:26:40 -0400
commit3477a8c7b7dc4c74fe3edbb53777966dfcf354a5 (patch)
tree706cabb2cf5302e56c400ae8ff132345bd839600 /src
parent2f0eb5f16630f5be441a36b63d3d6c5cd78bdb62 (diff)
downloadbyteorder-3477a8c7b7dc4c74fe3edbb53777966dfcf354a5.tar.gz
rename new.rs to io.rs
In the long ago, "new" referred to the "new I/O module" after I/O reform in the pre-1.0 days.
Diffstat (limited to 'src')
-rw-r--r--src/io.rs (renamed from src/new.rs)0
-rw-r--r--src/lib.rs4
2 files changed, 2 insertions, 2 deletions
diff --git a/src/new.rs b/src/io.rs
index 1650823..1650823 100644
--- a/src/new.rs
+++ b/src/io.rs
diff --git a/src/lib.rs b/src/lib.rs
index 96f7116..3ad2cd4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,10 +51,10 @@ use core::mem::transmute;
use core::ptr::copy_nonoverlapping;
#[cfg(feature = "std")]
-pub use new::{ReadBytesExt, WriteBytesExt};
+pub use io::{ReadBytesExt, WriteBytesExt};
#[cfg(feature = "std")]
-mod new;
+mod io;
#[inline]
fn extend_sign(val: u64, nbytes: usize) -> i64 {