[package] name = "aptos-data-client" version = "0.2.7" authors = ["Aptos Labs "] description = "The Aptos data client" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] async-trait = "0.1.53" futures = "0.3.21" itertools = "0.10.0" rand = "0.7.3" serde = { version = "1.0.137", default-features = false } thiserror = "1.0.31" tokio = { version = "1.18.2", features = ["full"] } aptos-config = { version = "0.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-id-generator = { version = "0.2.1", path = "../../crates/aptos-id-generator" } aptos-infallible = { version = "0.2.1", path = "../../crates/aptos-infallible" } aptos-logger = { version = "0.2.1", path = "../../crates/aptos-logger" } aptos-metrics-core = { version = "0.2.1", path = "../../crates/aptos-metrics-core" } aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service", features = [ "async" ] } aptos-types = { version = "0.2.1", path = "../../types" } netcore = { version = "0.2.1", path = "../../network/netcore" } aptos-network = { version = "0.2.1", path = "../../network" } short-hex-str = { version = "0.2.1", path = "../../crates/short-hex-str" } storage-service-client = { version = "0.2.1", path = "../storage-service/client" } storage-service-types = { version = "0.2.1", path = "../storage-service/types" } [dev-dependencies] bcs = "0.1.3" claim = "0.5.0" maplit = "1.0.2" tokio = { version = "1.18.2", features = [ "rt", "macros" ], default-features = false } aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service", features = [ "async", "testing" ] } aptos-channel = { version = "0.2.1", path = "../../crates/channel" } aptos-network = { version = "0.2.1", path = "../../network", features = [ "fuzzing" ] } # storage-service-server = { version = "0.2.1", path = "../storage-service/server" }