[package]
name = "aptos-operational-tool"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Tool for operators to manage nodes"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
edition = "2018"
[dependencies]
anyhow = "1.0.57"
base64 = "0.13.0"
bcs = "0.1.3"
futures = "0.3.21"
hex = "0.4.3"
itertools = "0.10.3"
rand = "0.7.3"
serde = { version = "1.0.137", features = ["rc"], default-features = false }
serde_json = "1.0.81"
serde_yaml = "0.8.24"
structopt = "0.3.21"
thiserror = "1.0.31"
tokio = { version = "1.18.2", features = ["full"] }
tokio-util = { version = "0.7.2", features = ["compat"] }
toml = { version = "0.5.9", default-features = false }
url = "2.2.2"
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-infallible = { version = "0.2.1", path = "../../../crates/aptos-infallible" }
aptos-management = { version = "0.2.1", path = ".." }
aptos-rest-client = { version = "0.2.1", path = "../../../crates/aptos-rest-client" }
aptos-secure-storage = { version = "0.2.1", path = "../../../secure/storage" }
aptos-temppath = { version = "0.2.1", path = "../../../crates/aptos-temppath" }
aptos-transaction-builder = { version = "0.2.1", path = "../../../sdk/transaction-builder" }
aptos-types = { version = "0.2.1", path = "../../../types" }
move-deps = { version = "0.2.1", path = "../../../aptos-move/move-deps", features = [
"address32"
] }
netcore = { version = "0.2.1", path = "../../../network/netcore" }
aptos-network = { version = "0.2.1", path = "../../../network" }
[features]
testing = []
fuzzing = ["aptos-config/fuzzing"]