aptos-transactional-test-harness 0.2.7

Transactional testing framework for Move
[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"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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 dependencies
move-deps = { version = "0.2.1", path = "../move-deps", features = [
    "address32"
] }
# Aptos Move dependencies
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" }
# Other Aptos dependencies
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