-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
43 lines (37 loc) · 1 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
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ever_vm'
version = '2.2.21'
[dependencies]
anyhow = '1.0'
diffy = { optional = true, version = '0.2.2' }
hex = '0.4'
lazy_static = '1.4'
log = '0.4'
num = '0.4'
num-traits = '0.2'
similar = { features = [ 'bytes' ], optional = true, version = '2.2.0' }
thiserror = '1.0'
zstd = { default-features = false, optional = true, version = '0.11' }
ever_block = { git = 'https://github.com/everx-labs/ever-block.git', tag = '1.11.20' }
[dev-dependencies]
criterion = '0.4'
libloading = '0.6'
log4rs = '1.2'
pprof = { features = [ 'criterion', 'flamegraph' ], version = '0.11' }
pretty_assertions = '1.3'
rand = '0.8'
ever_assembler = { git = 'https://github.com/everx-labs/ever-assembler.git' }
[features]
fift_check = [ ]
gosh = [ 'ever_block/gosh', 'diffy', 'similar', 'zstd' ]
log_file = [ ]
signature_no_check = [ ]
signature_with_id = [ 'ever_block/signature_with_id' ]
verbose = [ ]
[[bench]]
harness = false
name = 'benchmarks'
[lib]
bench = false