forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 1.43 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
[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.52"
fail = "0.4.0"
aptos-state-view = { path = "../storage/state-view" }
aptos-types = { path = "../types" }
aptos-vm = { path = "../aptos-move/aptos-vm" }
aptos-workspace-hack = { version = "0.1", path = "../crates/aptos-workspace-hack" }
executor = { path = "../execution/executor" }
storage-interface = { path = "../storage/storage-interface" }
[dev-dependencies]
rand = "0.8.3"
executor-test-helpers = { path = "../execution/executor-test-helpers" }
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"] }
vm-genesis = { path = "../aptos-move/vm-genesis" }
move-core-types = { git = "https://github.com/move-language/move", rev = "f2e7585b1ed5bd2810163d6bdebafe5a388881d3", features=["address32"] }
[features]
default = []
failpoints = ["fail/failpoints"]
fuzzing = ["aptos-types/fuzzing", "aptos-crypto/fuzzing", "aptosdb/fuzzing"]