forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.71 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
[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"
scratchpad = { path = "../storage/scratchpad", version = "0.1.0" }
diem-state-view = { path = "../storage/state-view", version = "0.1.0" }
storage-interface = { path = "../storage/storage-interface", version = "0.1.0" }
diem-types = { path = "../types", version = "0.1.0" }
diem-vm = { path = "../language/diem-vm", version = "0.1.0" }
diem-workspace-hack = { path = "../common/workspace-hack", version = "0.1.0" }
[dev-dependencies]
rand = "0.8.3"
executor = { path = "../execution/executor", version = "0.1.0" }
executor-test-helpers = { path = "../execution/executor-test-helpers", version = "0.1.0" }
diem-crypto = { path = "../crypto/crypto", version = "0.1.0", features = ["fuzzing"] }
diem-temppath = { path = "../common/temppath", version = "0.1.0" }
diem-types = { path = "../types", version = "0.1.0", features = ["fuzzing"] }
diem-vm = { path = "../language/diem-vm", version = "0.1.0" }
diemdb = { path = "../storage/diemdb", version = "0.1.0", features = ["fuzzing"] }
storage-service = { path = "../storage/storage-service", version = "0.1.0" }
transaction-builder = { path = "../language/transaction-builder", version = "0.1.0" }
vm-genesis = { path = "../language/tools/vm-genesis", version = "0.1.0" }
move-core-types = { path = "../language/move-core/types", version = "0.1.0" }
[features]
default = []
failpoints = ["fail/failpoints"]
fuzzing = ["diem-types/fuzzing", "diem-crypto/fuzzing", "diemdb/fuzzing"]