Bug: 193829374

Clone this repo:
  1. 9f7e1e2 Upgrade num-bigint to 0.4.4 am: 80ddf53de8 by Jeff Vander Stoep · 3 months ago emu-34-2-dev main master
  2. 80ddf53 Upgrade num-bigint to 0.4.4 by Jeff Vander Stoep · 3 months ago emu-34-3-release
  3. 4a4f09f Migrate to cargo_embargo. am: b2d25edee0 am: 8b5fb4f7aa am: 03069b27a5 by Andrew Walbran · 5 months ago
  4. b315bc3 Migrate to cargo_embargo. am: b2d25edee0 am: c8abab2737 am: 1d76ec7fff by Andrew Walbran · 5 months ago
  5. 03069b2 Migrate to cargo_embargo. am: b2d25edee0 am: 8b5fb4f7aa by Andrew Walbran · 5 months ago

num-bigint

crate documentation minimum rustc 1.31 build status

Big integer types for Rust, BigInt and BigUint.

Usage

Add this to your Cargo.toml:

[dependencies]
num-bigint = "0.4"

Features

The std crate feature is enabled by default, and is mandatory before Rust 1.36 and the stabilized alloc crate. If you depend on num-bigint with default-features = false, you must manually enable the std feature yourself if your compiler is not new enough.

Random Generation

num-bigint supports the generation of random big integers when the rand feature is enabled. To enable it include rand as

rand = "0.8"
num-bigint = { version = "0.4", features = ["rand"] }

Note that you must use the version of rand that num-bigint is compatible with: 0.8.

Releases

Release notes are available in RELEASES.md.

Compatibility

The num-bigint crate is tested for rustc 1.31 and greater.

Alternatives

While num-bigint strives for good performance in pure Rust code, other crates may offer better performance with different trade-offs. The following table offers a brief comparison to a few alternatives.

CrateLicenseMin rustcImplementationFeatures
num-bigintMIT/Apache-2.01.31pure rustdynamic width, number theoretical functions
awintMIT/Apache-2.01.66pure rustfixed width, heap or stack, concatenation macros
bnumMIT/Apache-2.01.61pure rustfixed width, parity with Rust primitives including floats
crypto-bigintMIT/Apache-2.01.57pure rustfixed width, stack only
ibigMIT/Apache-2.01.49pure rustdynamic width, number theoretical functions
rugLGPL-3.0+1.65bundles GMP via gmp-mpfr-sysall the features of GMP, MPFR, and MPC

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.