From 17bbd67b778d9fa7dac2f666463ff4811b5da293 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 1 May 2019 19:06:54 -0700 Subject: [PATCH] Support for i128 no longer requires nightly --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2a29af5..d36f4fd 100644 --- a/README.md +++ b/README.md @@ -70,13 +70,12 @@ fn write(writer: W, value: V) -> io::Result(writer: W, value: V) -> fmt::Result; ``` -where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, -`i64`, `u64`, `i128`, `u128`, `isize` and `usize`. 128-bit integer support is -only available with the nightly compiler when the `i128` feature is enabled for -this crate. The return value gives the number of bytes written. +where `itoa::Integer` is implemented for i8, u8, i16, u16, i32, u32, i64, u64, +i128, u128, isize and usize. 128-bit integer support requires rustc 1.26+ and +the `i128` feature of this crate enabled. The `write` function is only available when the `std` feature is enabled -(default is enabled). +(default is enabled). The return value gives the number of bytes written.