[package] name = "rust-bigint" version = "1.2.0" edition = "2018" authors = ["Robert Annessi ", "Ethan Fast "] license = "MIT" description = "Common traits and methods for multiple BigInt implementations" readme = "Readme.md" repository = "https://github.com/nash-io/rust-bigint" keywords = ["BigInt", "cryptography", "GMP", "num_bigint"] [lib] crate-type = ["cdylib", "rlib"] [features] default = ["rust_gmp"] rust_gmp = ["rust-gmp-kzen"] num_bigint = ["num-bigint", "num-traits", "num-integer"] [dependencies] getrandom = "0.2" num-bigint = { version = "0.4", features = ["serde"], optional = true } num-integer = { version = "0.1", optional = true } num-traits = { version = "0.2", optional = true } rust-gmp-kzen = { version = "0.5", features = ["serde_support"], optional = true } serde = "1.0" serde_derive = "1.0" [dev-dependencies] serde_json = "1.0"