[package] name = "network-builder" version = "0.2.7" authors = ["Aptos Labs "] description = "Aptos network builder for constructing a network" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.53" bcs = "0.1.3" futures = "0.3.21" rand = "0.7.3" serde = { version = "1.0.137", default-features = false } tokio = { version = "1.18.2", features = ["full"] } aptos-config = { version = "0.2.1", path = "../../config" } aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-infallible = { version = "0.2.1", path = "../../crates/aptos-infallible" } aptos-logger = { version = "0.2.1", path = "../../crates/aptos-logger" } aptos-secure-storage = { version = "0.2.1", path = "../../secure/storage" } aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service", features = [ "async" ] } aptos-types = { version = "0.2.1", path = "../../types" } aptos-channel = { version = "0.2.1", path = "../../crates/channel" } event-notifications = { version = "0.2.1", path = "../../state-sync/inter-component/event-notifications" } netcore = { version = "0.2.1", path = "../netcore" } aptos-network = { version = "0.2.1", path = "../." } network-discovery = { version = "0.2.1", path = "../discovery" }