[package]
name = "test-generation"
version = "0.3.2"
authors = ["Diem Association <opensource@diem.com>"]
description = "Tool for generating tests for the bytecode verifier and Move VM runtime"
repository = "https://github.com/diem/diem"
homepage = "https://diem.com"
license = "Apache-2.0"
edition = "2021"
[dependencies]
rand = "0.8.3"
num_cpus = "1.13.0"
clap = { version = "3.1.8", features = ["derive"] }
itertools = "0.10.0"
hex = "0.4.3"
getrandom = "0.2.2"
crossbeam-channel = "0.5.0"
tracing = "0.1.26"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
once_cell = "1.7.2"
move-bytecode-verifier = { version = "0.3.0", path = "../../move-bytecode-verifier" }
mv-core-types = { version = "0.3.0", path = "../../move-core/types" }
mv-vm-runtime = { version = "0.3.0", path = "../../move-vm/runtime" }
move-vm-test-utils = { version = "0.3.0", path = "../../move-vm/test-utils" }
mv-vm-types = { version = "0.3.0", path = "../../move-vm/types" }
module-generation = { version = "0.3.0", path = "../module-generation" }
mv-binary-format = { version = "0.3.0", path = "../../move-binary-format" }
mv-stdlib = { version = "0.3.0", path = "../../move-stdlib" }
mv-compiler = { version = "0.3.0", path = "../../move-compiler" }
[features]
mirai-contracts = []