25 releases

0.9.5 Nov 29, 2022
0.9.3 Feb 4, 2022
0.9.1 Jun 30, 2021
0.9.0 Jan 5, 2021
0.1.0 Dec 29, 2017

#33 in Algorithms

Download history 149903/week @ 2024-05-17 157562/week @ 2024-05-24 165489/week @ 2024-05-31 148460/week @ 2024-06-07 160860/week @ 2024-06-14 168593/week @ 2024-06-21 140857/week @ 2024-06-28 141751/week @ 2024-07-05 166622/week @ 2024-07-12 171318/week @ 2024-07-19 177194/week @ 2024-07-26 181372/week @ 2024-08-02 190060/week @ 2024-08-09 172039/week @ 2024-08-16 185806/week @ 2024-08-23 150879/week @ 2024-08-30

730,088 downloads per month
Used in 2,688 crates (130 directly)

MIT/Apache

53KB
1.5K SLoC

Uint

Description

Provides facilities to construct big unsigned integer types which use no allocations (stack-based, fixed bit length). If you want to use a predefined U128, U256 or U512 type, take a look at the primitive-types or ethereum-types crate.

The focus on the provided big unsigned integer types is performance and cross-platform availability. Support a very similar API as the built-in primitive integer types.

Usage

In your Cargo.toml paste

uint = "0.8"

Import the macro

use uint::construct_uint;

If you're using pre-edition Rust in your main file

#[macro_use]
extern crate uint;

Construct your own big unsigned integer type as follows.

// U1024 with 1024 bits consisting of 16 x 64-bit words
construct_uint! {
	pub struct U1024(16);
}

Tests

Basic tests

cargo test --release

Basic tests + property tests

cargo test --release --features=quickcheck

Benchmark tests

cargo bench

Fuzz tests

see fuzz README.md

Crate Features

  • std: Use Rust's standard library.
    • Enables byteorder/std, rustc-hex/std
    • Enabled by default.
  • quickcheck: Enable quickcheck-style property testing
    • Use with cargo test --release --features=quickcheck.
  • arbitrary: Allow for creation of an uint object from random unstructured input for use with fuzzers that use the arbitrary crate.
    • Disabled by default.

Dependencies

~145–400KB