Cargo Features

[dependencies]
rust_ev_crypto_primitives = { version = "0.5.4", default-features = false, features = ["num-bigint", "rug", "checks"] }
default = rug

The rug feature is set by default whenever rust_ev_crypto_primitives is added without default-features = false somewhere in the dependency tree.

num-bigint

Enables miller_rabin and num-bigint

miller_rabin:

Dependencies for usage with num-bigint

Affects integer::MPInteger

rug default

Enables rug and rug-miller-rabin

rug:

Dependencies for usage with rug

Affects integer::MPInteger

checks