Cargo Features
[dependencies]
cw-bigint = { version = "0.4.3", default-features = false, features = ["std", "quickcheck", "rand", "serde", "arbitrary"] }
- default = std
-
The
std
feature is set by default whenevercw-bigint
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of num-integer and num-traits
Features from optional dependencies
- quickcheck implicit feature
-
Enables quickcheck
quickcheck:
Automatic property based testing with shrinking
- rand implicit feature
-
Enables rand
rand:
Random number generators and other randomness functionality
- serde implicit feature
-
Enables serde
serde:
A generic serialization/deserialization framework
- arbitrary implicit feature
-
Enables arbitrary
arbitrary:
The trait for generating structured data from unstructured data