- Minimal supported compiler is Rust 1.70.0
- Minimal supported compiler is Rust 1.57.0
- Support for
no-std
by makingstd
a default feature which can be opted out of.
- Minimal supported compiler is Rust 1.56.0
- Changed Rust edition to 2021
- Stabilized interface
- The
atoi
function now supports parsing signed integers. Use theFromRadix10
trait directly if you wish to not allow leading+
or-
signs.
- Introduce
FromRadix10Signed
andFromRadix10SignedChecked
for parsing signed integers.
- Add support for hex numbers through
FromRadix16
andFromRadix16Checked
. - Fix: Documentation of
FromRadix10Checked
now has code samples using this trait.
- Fix: Fixed documentation of
atoi
s overflow behaviour.
- Added
From_radix_10_checked
. - Breaking change: atoi now returns
None
on overflow
- Documentation now hints at
FromRadix10
trait. - Updated to Rust 2018