[package] name = "peer-monitoring-service-server" version = "0.2.7" authors = ["Aptos Labs "] description = "The peer monitoring service (server-side)" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" [dependencies] bcs = "0.1.2" bytes = "1.0.1" futures = "0.3.12" once_cell = "1.7.2" serde = { version = "1.0.124", default-features = false } thiserror = "1.0.24" tokio = { version = "1.8.1", features = [ "rt", "macros" ], default-features = false } aptos-config = { version = "0.2.1", path = "../../../config" } 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" } bounded-executor = { version = "0.2.1", path = "../../../crates/bounded-executor", package = "bounded-aptos-executor" } channel = { version = "0.2.1", path = "../../../crates/channel", package = "aptos-channel" } netcore = { version = "0.2.1", path = "../../netcore" } network = { version = "0.2.1", path = "../../../network", package = "aptos-network" } peer-monitoring-service-types = { version = "0.2.1", path = "../types" } [dev-dependencies] claim = "0.5.0"