[package] name = "executor-test-helpers" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos executor test helpers" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2021" [dependencies] anyhow = "1.0.57" rand = "0.7.3" aptos-config = { version = "0.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-genesis = { version = "0.2.1", path = "../../crates/aptos-genesis", features = [ "testing" ] } aptos-sdk = { version = "0.2.1", path = "../../sdk" } aptos-state-view = { version = "0.2.1", path = "../../storage/state-view" } 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" ] } aptos-vm = { version = "0.2.1", path = "../../aptos-move/aptos-vm" } aptosdb = { version = "0.2.1", path = "../../storage/aptosdb", features = [ "fuzzing" ] } consensus-types = { version = "0.2.1", path = "../../consensus/consensus-types" } aptos-executor = { version = "0.2.1", path = "../executor" } executor-types = { version = "0.2.1", path = "../executor-types" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32" ] } storage-interface = { version = "0.2.1", path = "../../storage/storage-interface" } vm-genesis = { version = "0.2.1", path = "../../aptos-move/vm-genesis" }