Releases: kennytm/extprim
Releases · kennytm/extprim
v1.7.1
v1.7.0
Fixed num-traits 0.2.0 compatibility on Rust 1.26.
v1.6.0 Rust 1.16 doesn't support `default impl`.
v1.1.1 — Fix build failure when using num-traits 0.1.33
extprim
- num-traits 0.1.33 now defines a
pow
function which conflicts with the one defined in this crate. We have now switched to num-trait's one (thanks to #5).
v1.1.0 — no_std support
extprim
extprim
no longer supports Rust 1.8.0. Please upgrade to 1.9.0.
- Enabled
#![no_std]
. Use--no-default-features
to avoid linking to std. Caveats:rand
will not be imported, andu128
,i128
will not impl Rand.extprim::traits::parse_rust_int_lit
is not usable yet- we still depend on
num_traits
which may
- The constructors
new
andfrom_parts
are nowconst fn
in nightly build
extprim_literals
If you are targeting nightly, please ensure rustc is built after 2016-06-28, in order to capture rust-lang/rust#34385.
- Updated dependencies.
v1.0.1 — Windows support
- Fix linker failure when targeting Windows.
v1.0.0 — First stable release
First stable release
- Supports 128-bit integers (
u128
andi128
). - Tested on x86, x86_64 on OS X and Linux, for both stable (1.8.0) and nightly (1.10.0).
- Provide literal macros via syntex (stable) or compiler plugin (nightly).