[package] name = "aptos-executor" version = "0.2.7" authors = ["Aptos Labs "] 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.2.1", path = "../../crates/aptos-crypto" } aptos-infallible = { version = "0.2.1", path = "../../crates/aptos-infallible" } aptos-logger = { version = "0.2.1", path = "../../crates/aptos-logger" } aptos-metrics-core = { version = "0.2.1", path = "../../crates/aptos-metrics-core" } aptos-secure-net = { version = "0.2.1", path = "../../secure/net" } aptos-state-view = { version = "0.2.1", path = "../../storage/state-view" } aptos-types = { version = "0.2.1", path = "../../types" } aptos-vm = { version = "0.2.1", path = "../../aptos-move/aptos-vm" } consensus-types = { version = "0.2.1", path = "../../consensus/consensus-types" } executor-types = { version = "0.2.1", path = "../executor-types" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32" ] } scratchpad = { version = "0.2.1", path = "../../storage/scratchpad", package = "aptos-scratchpad" } storage-interface = { version = "0.2.1", path = "../../storage/storage-interface" } [dev-dependencies] proptest = "1.0.0" rand = "0.7.3" aptos-config = { version = "0.2.1", path = "../../config" } aptos-genesis = { version = "0.2.1", path = "../../crates/aptos-genesis", features = [ "testing" ] } aptos-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" } aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" } aptos-types = { version = "0.2.1", path = "../../types", features = [ "fuzzing" ] } aptosdb = { version = "0.2.1", path = "../../storage/aptosdb" } executor-test-helpers = { version = "0.2.1", path = "../executor-test-helpers" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps" } storage-interface = { version = "0.2.1", path = "../../storage/storage-interface", features = [ "fuzzing" ] } vm-genesis = { version = "0.2.1", 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"] [lib] name = "executor"