forked from everx-labs/ever-executor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (34 loc) · 945 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
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ever_executor'
version = '1.18.31'
[dependencies]
anyhow = '1.0'
lazy_static = '1.4'
log = '0.4'
thiserror = '1.0'
ever_block = { git = 'https://github.com/everx-labs/ever-block.git', tag = '1.11.22' }
ever_vm = { git = 'https://github.com/everx-labs/ever-vm.git', tag = '2.2.26' }
[dev-dependencies]
criterion = { features = [ 'html_reports' ], version = '0.3' }
libloading = '0.6'
log4rs = '1.2'
pretty_assertions = '1.3'
rand = '0.8'
serde = { features = [ 'derive' ], version = '1.0' }
serde_json = '1.0'
ever_assembler = { git = 'https://github.com/everx-labs/ever-assembler.git' }
[features]
ci_run = [ ]
cross_check = [ ]
gosh = [ 'ever_vm/gosh', 'ever_block/gosh' ]
ihr_disabled = [ ]
signature_with_id = [ 'ever_block/signature_with_id', 'ever_vm/signature_with_id' ]
timings = [ ]
[[bench]]
harness = false
name = 'benchmarks'
[lib]
bench = false
[profile]