forked from Layr-Labs/bn254-bls-keystore-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (63 loc) · 1.59 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "rust-bls-bn254"
description = "A rust crate implementing the BLS signatures using BN254 from arkworks"
version = "0.2.0"
edition = "2021"
license = "MIT"
readme = "README.md"
keywords = ["cryptography", "BLS", "BN254", "ethereum", "signature"]
categories = ["cryptography"]
exclude = [
"tests/*",
]
[dependencies]
ark-ff = { version = "0.4.2", default-features = false }
ark-bn254 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-ec = { version = "0.4.2", default-features = false }
sha2 = { version = "0.10.6", default-features = false }
num-bigint = { version = "0.4.5", features = ["serde"]}
pbkdf2 = "0.12.2"
unicode-normalization = "0.1"
rand = "0.8"
hkdf = "0.12.4"
num-traits = "0.2.19"
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.118"
scrypt = "0.11.0"
aes = "0.8.4"
ctr = "0.9.2"
uuid = { version = "0.8", features = ["v4"] }
ark-serialize = "0.4.2"
thiserror = "1.0"
[dev-dependencies]
rand_core = {version = "0.6.4", features = ["getrandom"] }
hex = { version = "0.4.3" }
hex-literal = { version = "0.4.1" }
json = { version = "0.12.4" }
proptest = "1.0"
assert_matches = "1.5.0"
[features]
default = ["std"]
std = [
"ark-ff/std",
"ark-bn254/std",
"ark-std/std",
"ark-ec/std",
"sha2/std",
]
[[test]]
name = "keystore"
path = "tests/keystore_tests.rs"
[[test]]
name = "mnemonics"
path = "tests/mnemonic_tests.rs"
[[test]]
name = "tree"
path = "tests/tree_tests.rs"
[[test]]
name = "path"
path = "tests/path_tests.rs"
[workspace]
members = ["."]