[package] name = "data-streaming-service" version = "0.2.7" authors = ["Aptos Labs "] repository = "https://github.com/aptos-labs/aptos-core" description = "The data streaming service that sends data notifications to clients" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] async-trait = "0.1.53" enum_dispatch = "0.3.8" futures = "0.3.21" once_cell = "1.10.0" serde = { version = "1.0.137", default-features = false } thiserror = "1.0.31" tokio = { version = "1.18.2", features = ["full"] } tokio-stream = "0.1.8" aptos-config = { version = "0.2.1", path = "../../../config" } aptos-crypto = { version = "0.2.1", path = "../../../crates/aptos-crypto" } aptos-data-client = { version = "0.2.1", path = "../../aptos-data-client" } 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-types = { version = "0.2.1", path = "../../../types" } aptos-channel = { version = "0.2.1", path = "../../../crates/channel" } aptos-network = { version = "0.2.1", path = "../../../network" } short-hex-str = { version = "0.2.1", path = "../../../crates/short-hex-str" } [dev-dependencies] claim = "0.5.0" rand = "0.7.3" tokio = { version = "1.18.2", features = ["full"] } aptos-types = { version = "0.2.1", path = "../../../types" } storage-service-types = { version = "0.2.1", path = "../../storage-service/types" }