Skip to content

Releases: kennytm/extprim

v1.7.1

30 May 16:30
049d9bc
Compare
Choose a tag to compare
Version = 1.7.1.

v1.7.0

21 Apr 07:30
1bdef46
Compare
Choose a tag to compare
  • Upgraded optional rand dependency to 0.6.
  • The minimum supported Rust version is now 1.22.1. (Note: once the MSRV reaches 1.26, we will deprecate this package.)

Fixed num-traits 0.2.0 compatibility on Rust 1.26.

13 May 05:59
932807d
Compare
Choose a tag to compare
v1.6.0

Rust 1.16 doesn't support `default impl`.

v1.1.1 — Fix build failure when using num-traits 0.1.33

14 Jul 10:11
Compare
Choose a tag to compare

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

02 Jul 20:07
965a92c
Compare
Choose a tag to compare

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, and u128, 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 and from_parts are now const 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

10 Jun 13:51
1277af0
Compare
Choose a tag to compare
  • Fix linker failure when targeting Windows.

v1.0.0 — First stable release

23 Apr 17:43
Compare
Choose a tag to compare

First stable release

  • Supports 128-bit integers (u128 and i128).
  • 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).