Bug: 193829374

Clone this repo:
  1. 494f446 Migrate 3 crates to monorepo. by James Farrell · 3 months ago main master
  2. a168197 Add patch to pin the autocfg version and delete temporary files. by James Farrell · 3 months ago
  3. ebee772 Update Android.bp by running cargo_embargo am: 26633bec60 am: a37b870d85 by James Farrell · 8 months ago android15-automotiveos-dev android15-qpr1-release android15-qpr1-s3-release android15-qpr1-s4-release android15-qpr1-s5-release android15-tests-dev android-15.0.0_r10 android-15.0.0_r11 android-15.0.0_r12 android-15.0.0_r13 android-15.0.0_r6 android-15.0.0_r7 android-15.0.0_r8 android-15.0.0_r9
  4. a37b870 Update Android.bp by running cargo_embargo am: 26633bec60 by James Farrell · 8 months ago
  5. 26633be Update Android.bp by running cargo_embargo by James Farrell · 8 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.