Cargo Features
[dependencies]
num-bigint-dig = { version = "0.8.4", default-features = false, features = ["std", "i128", "u64_digit", "prime", "nightly", "fuzz", "zeroize"] }
- default = std, u64_digit
-
These default features are set whenever
num-bigint-dig
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables write of smallvec and std of num-integer, num-traits, rand, and serde
rand:
Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.
- i128
- u64_digit default
-
Affects
num-bigint-dig::VEC_SIZE
… - prime
-
rand:
Option (enabled by default): enable StdRng
Affects
bigrand::RandPrime
,num-bigint-dig::prime
… - nightly
- fuzz = arbitrary
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.