forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 2.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "executor"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos executor"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anyhow = "1.0.57"
bcs = { git = "https://github.com/aptos-labs/bcs", rev = "2cde3e8446c460cb17b0c1d6bac7e27e964ac169" }
fail = "0.5.0"
itertools = { version = "0.10.0", default-features = false }
once_cell = "1.10.0"
rayon = "1.5.2"
serde = { version = "1.0.137", features = ["derive"] }
aptos-crypto = { path = "../../crates/aptos-crypto" }
aptos-gas = { path = "../../aptos-move/aptos-gas" }
aptos-infallible = { path = "../../crates/aptos-infallible" }
aptos-logger = { path = "../../crates/aptos-logger" }
aptos-metrics-core = { path = "../../crates/aptos-metrics-core" }
aptos-secure-net = { path = "../../secure/net" }
aptos-state-view = { path = "../../storage/state-view" }
aptos-types = { path = "../../types" }
aptos-vm = { path = "../../aptos-move/aptos-vm" }
consensus-types = { path = "../../consensus/consensus-types" }
executor-types = { path = "../executor-types" }
scratchpad = { path = "../../storage/scratchpad" }
storage-interface = { path = "../../storage/storage-interface" }
move-core-types = { workspace = true }
[dev-dependencies]
proptest = "1.0.0"
rand = "0.7.3"
aptos-config = { path = "../../config" }
aptos-genesis = { path = "../../crates/aptos-genesis", features = ["testing"] }
aptos-temppath = { path = "../../crates/aptos-temppath" }
aptos-types = { path = "../../types", features = ["fuzzing"] }
aptosdb = { path = "../../storage/aptosdb" }
cached-packages = { path = "../../aptos-move/framework/cached-packages" }
executor-test-helpers = { path = "../executor-test-helpers" }
storage-interface = { path = "../../storage/storage-interface", features = ["fuzzing"] }
vm-genesis = { path = "../../aptos-move/vm-genesis" }
[features]
default = []
fuzzing = ["consensus-types/fuzzing", "aptos-crypto/fuzzing", "aptos-types/fuzzing", "storage-interface/fuzzing"]
failpoints = ["fail/failpoints", "aptos-vm/failpoints"]