[package] name = "aptos-genesis-tool" version = "0.1.7" authors = ["Aptos Labs "] description = "A tool to manage genesis" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] anyhow = "1.0.57" bcs = "0.1.3" rand = "0.7.3" serde = { version = "1.0.137", features = ["rc"], default-features = false } structopt = "0.3.21" toml = { version = "0.5.9", default-features = false } aptos-config = { version = "0.1.7", path = "../.." } aptos-crypto = { version = "0.1.7", path = "../../../crates/aptos-crypto" } aptos-global-constants = { version = "0.1.7", path = "../../global-constants" } aptos-management = { version = "0.1.7", path = ".." } aptos-secure-storage = { version = "0.1.7", path = "../../../secure/storage" } aptos-state-view = { version = "0.1.7", path = "../../../storage/state-view" } aptos-temppath = { version = "0.1.7", path = "../../../crates/aptos-temppath" } aptos-types = { version = "0.1.7", path = "../../../types" } aptos-vm = { version = "0.1.7", path = "../../../aptos-move/aptos-vm" } aptosdb = { version = "0.1.7", path = "../../../storage/aptosdb" } consensus-types = { version = "0.1.7", path = "../../../consensus/consensus-types" } aptos-executor = { version = "0.1.7", path = "../../../execution/executor" } storage-interface = { version = "0.1.7", path = "../../../storage/storage-interface" } vm-genesis = { version = "0.1.7", path = "../../../aptos-move/vm-genesis" } cached-framework-packages = { version = "0.1.7", path = "../../../aptos-move/framework/cached-packages" } [dev-dependencies] aptos-config = { version = "0.1.7", path = "../..", features = ["fuzzing"] } [features] testing = [] fuzzing = ["aptos-config/fuzzing"]