[package] name = "mv-async-vm" version = "0.3.2" authors = ["Diem Association "] description = "Wrapper for the Move VM for the asynchronous execution flavor" repository = "https://github.com/diem/move" license = "Apache-2.0" edition = "2021" [dependencies] anyhow = "1.0.52" better_any = "0.1.1" walkdir = "2.3.1" itertools = "0.10.0" smallvec = "1.6.1" bcs = "0.1.2" sha3 = "0.9.1" move-command-line-common = { version = "0.3.0", path = "../../../move-command-line-common" } move-core-types = { version = "0.3.0", path = "../../../move-core/types", package = "mv-core-types" } move-compiler = { version = "0.3.0", path = "../../../move-compiler", package = "mv-compiler" } move-vm-types = { version = "0.3.0", path = "../../../move-vm/types", package = "mv-vm-types" } move-vm-runtime = { version = "0.3.0", path = "../../../move-vm/runtime", features = [ "debugging" ], package = "mv-vm-runtime" } move-vm-test-utils = { version = "0.3.0", path = "../../../move-vm/test-utils" } move-binary-format = { version = "0.3.0", path = "../../../move-binary-format", package = "mv-binary-format" } [dev-dependencies] datatest-stable = "0.1.1" move-prover-test-utils = { version = "0.3.0", path = "../../../move-prover/test-utils" } mv-stdlib = { version = "0.3.0", path = "../../../move-stdlib", features = [ "testing" ] } [[test]] name = "testsuite" harness = false [lib] name = "move_async_vm"