-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
51 lines (45 loc) · 1.01 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
[package]
build = 'build.rs'
edition = '2021'
name = 'ever_block'
version = '1.11.21'
[dependencies]
aes-ctr = '0.6'
anyhow = '1.0'
base64 = '0.13'
blst = { features = [ 'portable' ], version = '0.3.5' }
crc = '3.0'
curve25519-dalek = '4.0'
ed25519 = '2.2'
ed25519-dalek = { features = [ 'hazmat', 'rand_core' ], version = '2.0' }
getrandom = { features = [ 'js' ], version = '0.2' }
hex = '0.4'
lazy_static = '1.4'
log = '0.4'
num = '0.4'
num-derive = '0.4'
num-traits = '0.2'
rand = '0.8'
serde = { features = [ 'derive', 'rc' ], version = '1.0.105' }
serde_json = '1.0'
sha2 = '0.10'
smallvec = { features = [ 'const_new', 'union', 'write' ], version = '1.10' }
thiserror = '1.0'
x25519-dalek = '2.0'
lockfree = { git = 'https://github.com/everx-labs/lockfree.git' }
[dev-dependencies]
criterion = '0.4'
pretty_assertions = '1.3'
[features]
cell_counter = [ ]
default = [ ]
export_key = [ ]
gosh = [ ]
groth = [ ]
signature_with_id = [ ]
std = [ ]
[[bench]]
harness = false
name = 'benchmarks'
[lib]
bench = false