forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 1.35 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
[package]
name = "vm-validator"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos vm validator"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
anyhow = "1.0.57"
fail = "0.5.0"
aptos-state-view = { path = "../storage/state-view" }
aptos-types = { path = "../types" }
aptos-vm = { path = "../aptos-move/aptos-vm" }
aptos-workspace-hack = { path = "../crates/aptos-workspace-hack" }
executor = { path = "../execution/executor" }
storage-interface = { path = "../storage/storage-interface" }
[dev-dependencies]
rand = "0.8.3"
aptos-crypto = { path = "../crates/aptos-crypto", features = ["fuzzing"] }
aptos-temppath = { path = "../crates/aptos-temppath" }
aptos-transaction-builder = { path = "../sdk/transaction-builder" }
aptos-types = { path = "../types", features = ["fuzzing"] }
aptos-vm = { path = "../aptos-move/aptos-vm" }
aptosdb = { path = "../storage/aptosdb", features = ["fuzzing"] }
executor-test-helpers = { path = "../execution/executor-test-helpers" }
move-deps = { path = "../aptos-move/move-deps", features = ["address32"] }
vm-genesis = { path = "../aptos-move/vm-genesis" }
[features]
default = []
failpoints = ["fail/failpoints"]
fuzzing = ["aptos-types/fuzzing", "aptos-crypto/fuzzing", "aptosdb/fuzzing"]