[package] name = "aptos" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos tool for management of nodes and interacting with the blockchain" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] anyhow = "1.0.57" async-trait = "0.1.53" base64 = "0.13.0" bcs = "0.1.3" clap = "3.2.11" clap_complete = "3.2.3" dirs = "4.0.0" futures = "0.3.21" hex = "0.4.3" itertools = "0.10.3" parse_duration = "2.1.1" rand = "0.7.3" regex = "1.1.5" reqwest = { version = "0.11.10", features = ["blocking", "json"] } serde = "1.0.137" serde_json = "1.0.81" serde_yaml = "0.8.24" tempfile = "3.3.0" termcolor = "1.1.3" thiserror = "1.0.31" tokio = { version = "1.18.2", features = ["full"] } tokio-util = { version = "0.7.2", features = ["compat"] } toml = "0.5.9" uuid = { version = "1.0.0", features = ["v4", "serde"] } walkdir = "2.3.2" aptos-config = { version = "0.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../aptos-crypto", features = [] } aptos-faucet = { version = "0.2.1", path = "../aptos-faucet" } aptos-gas = { version = "0.2.1", path = "../../aptos-move/aptos-gas" } aptos-genesis = { version = "0.2.1", path = "../aptos-genesis" } aptos-github-client = { version = "0.2.1", path = "../../secure/storage/github" } aptos-keygen = { version = "0.2.1", path = "../aptos-keygen" } aptos-logger = { version = "0.2.1", path = "../aptos-logger" } aptos-module-verifier = { version = "0.2.1", path = "../../aptos-move/aptos-module-verifier" } aptos-node = { version = "0.2.1", path = "../../aptos-node" } aptos-rest-client = { version = "0.2.1", path = "../../crates/aptos-rest-client" } aptos-sdk = { version = "0.2.1", path = "../../sdk" } aptos-secure-storage = { version = "0.2.1", path = "../../secure/storage" } aptos-telemetry = { version = "0.2.1", path = "../aptos-telemetry" } aptos-temppath = { version = "0.2.1", path = "../aptos-temppath" } aptos-transaction-builder = { version = "0.2.1", path = "../../sdk/transaction-builder" } aptos-transactional-test-harness = { version = "0.2.1", path = "../../aptos-move/aptos-transactional-test-harness" } aptos-types = { version = "0.2.1", path = "../../types" } aptos-vm = { version = "0.2.1", path = "../../aptos-move/aptos-vm" } aptosdb = { version = "0.2.1", path = "../../storage/aptosdb" } cached-framework-packages = { version = "0.2.1", path = "../../aptos-move/framework/cached-packages" } executor = { version = "0.2.1", path = "../../execution/executor", package = "aptos-executor" } framework = { package = "aptos-framework", version = "0.2.1", path = '../../aptos-move/framework' } move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [ "address32", "testing", "table-extension" ] } short-hex-str = { version = "0.2.1", path = "../short-hex-str" } storage-interface = { version = "0.2.1", path = "../../storage/storage-interface" } vm-genesis = { version = "0.2.1", path = "../../aptos-move/vm-genesis" } [features] default = [] fuzzing = []