-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (26 loc) · 902 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rust-bigint"
version = "1.2.1-alpha.0"
edition = "2018"
authors = ["Robert Annessi <[email protected]>", "Ethan Fast <[email protected]>"]
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"