[package] name = "vm-genesis" version = "0.2.7" edition = "2018" authors = ["Aptos Labs "] description = "Aptos vm genesis" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" [dependencies] anyhow = "1.0.57" bcs = "0.1.3" once_cell = "1.10.0" rand = "0.7.3" aptos-config = { version = "0.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-gas = { version = "0.2.1", path = "../aptos-gas" } aptos-state-view = { version = "0.2.1", path = "../../storage/state-view" } aptos-types = { version = "0.2.1", path = "../../types" } 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" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32" ] } [dev-dependencies] proptest = "1.0.0" proptest-derive = "0.3.0" aptos-proptest-helpers = { version = "0.2.1", path = "../../crates/aptos-proptest-helpers" } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32", "fuzzing" ] } [features] default = [] fuzzing = ["aptos-types/fuzzing", "move-deps/fuzzing"]