[package]
name = "aptos-executor"
version = "0.1.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos executor"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2018"
[dependencies]
anyhow = "1.0.57"
bcs = "0.1.3"
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 = { version = "0.1.7", path = "../../crates/aptos-crypto" }
aptos-infallible = { version = "0.1.7", path = "../../crates/aptos-infallible" }
aptos-logger = { version = "0.1.7", path = "../../crates/aptos-logger" }
aptos-metrics-core = { version = "0.1.7", path = "../../crates/aptos-metrics-core" }
aptos-secure-net = { version = "0.1.7", path = "../../secure/net" }
aptos-state-view = { version = "0.1.7", path = "../../storage/state-view" }
aptos-types = { version = "0.1.7", path = "../../types" }
aptos-vm = { version = "0.1.7", path = "../../aptos-move/aptos-vm" }
consensus-types = { version = "0.1.7", path = "../../consensus/consensus-types" }
executor-types = { version = "0.1.7", path = "../executor-types" }
move-deps = { version = "0.1.7", path = "../../aptos-move/move-deps", features = [
"address32"
] }
aptos-scratchpad = { version = "0.1.7", path = "../../storage/scratchpad" }
storage-interface = { version = "0.1.7", path = "../../storage/storage-interface" }
[dev-dependencies]
[features]
default = []
fuzzing = [
"consensus-types/fuzzing",
"aptos-crypto/fuzzing",
"aptos-types/fuzzing",
"storage-interface/fuzzing"
]
failpoints = ["fail/failpoints", "aptos-vm/failpoints"]
[lib]
name = "executor"