[package] name = "aptos-rest-client" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos REST client" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [features] default = ["dpn"] dpn = [] [dependencies] anyhow = "1.0.57" bcs = "0.1.3" hex = "0.4.3" reqwest = { version = "0.11.10", features = ["json", "cookies", "blocking"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" tokio = { version = "1.18.2", features = ["full"] } url = "2.2.2" aptos-api-types = { version = "0.2.1", path = "../../api/types" } aptos-crypto = { version = "0.2.1", path = "../aptos-crypto" } 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" ] }