-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
39 lines (34 loc) · 816 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
31
32
33
34
35
36
37
38
[package]
name = "amcl_wrapper"
version = "0.4.0"
authors = ["lovesh harchandani <[email protected]>"]
description = "Wapper over Milagro Cryptographic Library, https://github.com/miracl/core"
repository = "https://github.com/lovesh/amcl_rust_wrapper"
license = "Apache-2.0"
edition = "2018"
exclude = [
"fuzz/artifacts/*",
"fuzz/corpus/*"
]
[features]
default = ["bls381"]
bls381 = []
bn254 = []
secp256k1 = []
ed25519 = []
[dependencies]
rand = "0.7"
lazy_static = "1.4.0"
byteorder = "1.3.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_bytes = "0.11"
zeroize = "1.1.0"
#tiny-keccak = "1.5"
sha3 = "0.8.2"
rayon = "1.3"
subtle-encoding = "0.5.1"
[dependencies.amcl]
package = "miracl_core"
version = "2.0.0"
features = ["bls12381", "bn254", "secp256k1", "ed25519"]