[package] name = "aptos-sf-stream" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos StreamingFast Stream" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2021" [dependencies] anyhow = "1.0.57" base64 = "0.13.0" 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" prost = "0.10.4" 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 Deps aptos-api = { version = "0.2.1", path = "../api", package = "aptos-api" } aptos-api-types = { version = "0.2.1", path = "../api/types" } aptos-config = { version = "0.2.1", path = "../config" } aptos-logger = { version = "0.2.1", path = "../crates/aptos-logger" } aptos-mempool = { version = "0.2.1", path = "../mempool" } aptos-metrics-core = { version = "0.2.1", path = "../crates/aptos-metrics-core" } aptos-protos = { version = "0.2.1", path = "../crates/aptos-protos" } aptos-types = { version = "0.2.1", path = "../types" } aptos-vm = { version = "0.2.1", path = "../aptos-move/aptos-vm" } move-deps = { version = "0.2.1", path = "../aptos-move/move-deps" } storage-interface = { version = "0.2.1", path = "../storage/storage-interface" } [dev-dependencies] goldenfile = "1.1.0" rand = "0.7.3" regex = "1.5.5" aptos-crypto = { path = "../crates/aptos-crypto" } aptos-genesis = { path = "../crates/aptos-genesis", features = ["testing"] } aptos-global-constants = { path = "../config/global-constants" } aptos-mempool = { path = "../mempool", features = ["fuzzing"] } aptos-proptest-helpers = { path = "../crates/aptos-proptest-helpers" } aptos-sdk = { path = "../sdk" } aptos-secure-storage = { path = "../secure/storage" } aptos-temppath = { path = "../crates/aptos-temppath" } aptos-vm = { path = "../aptos-move/aptos-vm" } aptosdb = { path = "../storage/aptosdb", features = ["fuzzing"] } cached-framework-packages = { path = "../aptos-move/framework/cached-packages" } executor = { path = "../execution/executor", package = "aptos-executor" } executor-types = { path = "../execution/executor-types" } mempool-notifications = { path = "../state-sync/inter-component/mempool-notifications" } move-deps = { path = "../aptos-move/move-deps" } vm-validator = { path = "../vm-validator" } [features] failpoints = ["fail/failpoints"]