[package]
name = "aptos-management"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos Management is a tool used to manage the configuration of a Node"
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"
hex = "0.4.3"
serde = { version = "1.0.137", features = ["rc"], default-features = false }
serde_yaml = "0.8.24"
structopt = "0.3.21"
thiserror = "1.0.31"
aptos-config = { version = "0.2.1", path = ".." }
aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" }
aptos-global-constants = { version = "0.2.1", path = "../global-constants" }
aptos-secure-storage = { version = "0.2.1", path = "../../secure/storage" }
aptos-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" }
aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service" }
aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" }
aptos-types = { version = "0.2.1", path = "../../types" }
[dev-dependencies]
aptos-config = { version = "0.2.1", path = "..", features = ["fuzzing"] }
[features]
testing = []
fuzzing = ["aptos-config/fuzzing"]