forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.42 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
[package]
name = "vm-validator"
version = "0.1.0"
authors = ["Diem Association <[email protected]>"]
description = "Diem vm validator"
repository = "https://github.com/diem/diem"
homepage = "https://diem.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
anyhow = "1.0.38"
fail = "0.4.0"
ouroboros = "0.9.2"
scratchpad = { path = "../storage/scratchpad" }
diem-state-view = { path = "../storage/state-view" }
storage-interface = { path = "../storage/storage-interface" }
diem-types = { path = "../types" }
diem-vm = { path = "../diem-move/diem-vm" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
[dev-dependencies]
rand = "0.8.3"
executor = { path = "../execution/executor" }
executor-test-helpers = { path = "../execution/executor-test-helpers" }
diem-crypto = { path = "../crates/diem-crypto", features = ["fuzzing"] }
diem-temppath = { path = "../common/temppath" }
diem-types = { path = "../types", features = ["fuzzing"] }
diem-vm = { path = "../diem-move/diem-vm" }
diemdb = { path = "../storage/diemdb", features = ["fuzzing"] }
storage-service = { path = "../storage/storage-service" }
diem-transaction-builder = { path = "../sdk/transaction-builder" }
vm-genesis = { path = "../diem-move/vm-genesis" }
move-core-types = { path = "../language/move-core/types" }
[features]
default = []
failpoints = ["fail/failpoints"]
fuzzing = ["diem-types/fuzzing", "diem-crypto/fuzzing", "diemdb/fuzzing"]