aptos-api 0.1.2

Aptos REST API
Documentation
[package]
name = "aptos-api"
version = "0.1.2"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos REST API"
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"
bytes = "1.1.0"
fail = "0.5.0"
futures = "0.3.21"
hex = "0.4.3"
hyper = "0.14.18"
once_cell = "1.10.0"
percent-encoding = "2.1.0"
serde = { version = "1.0.137", features = ["derive"], default-features = false }
serde_json = { version = "1.0.81", features = ["preserve_order"] }
tokio = { version = "1.18.2", features = ["full"] }
warp = { version = "0.3.2", features = ["default", "tls"] }
aptos-api-types = { version = "0.1.0", path = "./types", package = "aptos-api-types" }
aptos-config = { version = "0.1.0", path = "../config" }
aptos-crypto = { version = "0.1.0", path = "../crates/aptos-crypto" }
aptos-logger = { version = "0.1.0", path = "../crates/aptos-logger" }
aptos-mempool = { version = "0.1.0", path = "../mempool" }
aptos-metrics-core = { version = "0.1.0", path = "../crates/aptos-metrics-core" }
aptos-state-view = { version = "0.1.0", path = "../storage/state-view" }
aptos-types = { version = "0.1.0", path = "../types" }
aptos-vm = { version = "0.1.0", path = "../aptos-move/aptos-vm" }
move-deps = { version = "0.1.0", path = "../aptos-move/move-deps", features = [
    "address32"
] }
storage-interface = { version = "0.1.0", path = "../storage/storage-interface" }

[dev-dependencies]
goldenfile = "1.1.0"
rand = "0.7.3"
regex = "1.5.5"
reqwest = { version = "0.11.10", features = [
    "blocking",
    "json"
], default_features = false }

# aptos-crypto = { version = "0.1.0", path = "../crates/aptos-crypto" }
# aptos-genesis-tool = { version = "0.1.0", path = "../config/management/genesis", features = [
#     "testing"
# ] }
# aptos-global-constants = { version = "0.1.0", path = "../config/global-constants" }
# aptos-mempool = { version = "0.1.0", path = "../mempool", features = [
#     "fuzzing"
# ] }
# aptos-sdk = { version = "0.1.0", path = "../sdk" }
# aptos-secure-storage = { version = "0.1.0", path = "../secure/storage" }
# aptos-temppath = { version = "0.1.0", path = "../crates/aptos-temppath" }
# aptos-vm = { version = "0.1.0", path = "../aptos-move/aptos-vm" }
# aptosdb = { version = "0.1.0", path = "../storage/aptosdb", features = [
#     "fuzzing"
# ] }
# cached-framework-packages = { version = "0.1.0", path = "../aptos-move/framework/cached-packages" }
# aptos-executor = { version = "0.1.0", path = "../execution/executor" }
# executor-types = { version = "0.1.0", path = "../execution/executor-types" }
# mempool-notifications = { version = "0.1.0", path = "../state-sync/inter-component/mempool-notifications" }
# move-deps = { version = "0.1.0", path = "../aptos-move/move-deps" }
# vm-validator = { version = "0.1.0", path = "../vm-validator" }
[features]
failpoints = ["fail/failpoints"]