-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (46 loc) · 920 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "energon"
version = "0.0.1"
edition = "2021"
authors = ["version513 <[email protected]>"]
[dependencies]
aes-gcm = "0.10.1"
hkdf = "0.12.3"
pairing = { version = "0.23.0" }
crev-common = "0.25.0"
thiserror = "2.0.3"
rand = "0.8.4"
rand_core = "0.6.4"
rand_chacha = "0.3.0"
blstrs = "0.7.0"
blst_lib = { version = "0.3.11", package = "blst" }
sha2 = "0.10.7"
hex = "0.4.2"
num-traits = "0.2.19"
num-bigint = "0.4.3"
sha3 = "0.10.8"
ark-bls12-381 = "0.5.0"
ark-bn254 = "0.5.0"
ark-ec = "0.5.0"
ark-std = "0.5.0"
ark-serialize = "0.5.0"
ark-ff = "0.5.0"
[dependencies.crypto-common]
version = "0.1.3"
[dependencies.group]
version = "0.13.0"
default-features = false
optional = false
[features]
bls12381_arkworks = []
bls12381_blstrs = []
bn254_arkworks = []
[profile.release]
lto = true
strip = true
codegen-units = 1
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "basic"
harness = false