-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 939 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
[package]
name = "milagro_bls"
version = "1.1.0"
authors = ["Lovesh Harchandani <[email protected]>", "Kirk Baird <[email protected]>", "Paul Hauner <[email protected]>"]
description = "BLS12-381 signatures using the Apache Milagro curve library, targeting Ethereum 2.0"
license = "Apache-2.0"
[[bench]]
name = "bls381_benches"
harness = false
[dependencies]
amcl = { path = "./incubator-milagro-crypto-rust", default-features = false, features = ["bls381"]}
hex = { version = "0.4.0", optional = true }
lazy_static = { version = "1.4.0", optional = true }
rand = { version = "0.7.2", default-features = false }
zeroize = "1.0.0"
# This cannot be specified as dev-dependencies. Otherwise a cargo bug will always resolve `rand` with `std` feature, which breaks `no_std` builds.
criterion = { version = "0.3.0", optional = true }
[features]
default = ["std"]
bench = ["criterion"]
std = [
"rand/std",
"lazy_static",
"hex",
]