981 B
981 B
Changelog
2.0.0
- Minimal supported compiler is Rust 1.57.0
- Support for
no-stdby makingstda default feature which can be opted out of.
1.0.0
- Minimal supported compiler is Rust 1.56.0
- Changed Rust edition to 2021
- Stabilized interface
0.4.0
- The
atoifunction now supports parsing signed integers. Use theFromRadix10trait directly if you wish to not allow leading+or-signs.
0.3.3
- Introduce
FromRadix10SignedandFromRadix10SignedCheckedfor parsing signed integers.
0.3.2
- Add support for hex numbers through
FromRadix16andFromRadix16Checked. - Fix: Documentation of
FromRadix10Checkednow has code samples using this trait.
0.3.1
- Fix: Fixed documentation of
atois overflow behaviour.
0.3.0
- Added
From_radix_10_checked. - Breaking change: atoi now returns
Noneon overflow
0.2.4
- Documentation now hints at
FromRadix10trait. - Updated to Rust 2018