[package]
name = "aptos-transactional-test-harness"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Transactional testing framework for Move"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2021"
[dependencies]
anyhow = "1.0.57"
bcs = "0.1.3"
clap = "3.1.8"
hex = "0.4.3"
once_cell = "1.10.0"
serde = { version = "1.0.137", default-features = false }
serde_json = "1.0.81"
move-deps = { version = "0.2.1", path = "../move-deps", features = [
"address32"
] }
aptos-api-types = { version = "0.2.1", path = "../../api/types" }
aptos-gas = { version = "0.2.1", path = "../aptos-gas" }
aptos-vm = { version = "0.2.1", path = "../aptos-vm" }
cached-framework-packages = { version = "0.2.1", path = "../framework/cached-packages" }
framework = { version = "0.2.1", path = "../framework", package = "aptos-framework" }
language-e2e-tests = { version = "0.2.1", path = "../e2e-tests" }
vm-genesis = { version = "0.2.1", path = "../vm-genesis" }
aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" }
aptos-state-view = { version = "0.2.1", path = "../../storage/state-view" }
aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" }
aptos-types = { version = "0.2.1", path = "../../types", features = [
"fuzzing"
] }
storage-interface = { version = "0.2.1", path = "../../storage/storage-interface" }
[dev-dependencies]
datatest-stable = "0.1.1"
[[test]]
name = "tests"
harness = false