network-discovery 0.2.7

Aptos Network Peer Discovery
[package]
name = "network-discovery"
version = "0.2.7"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
description = "Aptos Network Peer Discovery"
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"
futures = "0.3.21"
once_cell = "1.10.0"
serde_yaml = "0.8.24"
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-logger = { version = "0.2.1", path = "../../crates/aptos-logger" }
aptos-metrics-core = { version = "0.2.1", path = "../../crates/aptos-metrics-core" }
aptos-secure-storage = { version = "0.2.1", path = "../../secure/storage" }
aptos-time-service = { version = "0.2.1", path = "../../crates/aptos-time-service" }
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" }
move-deps = { version = "0.2.1", path = "../../aptos-move/move-deps", features = [
    "address32"
] }
aptos-network = { version = "0.2.1", path = "../../network" }
short-hex-str = { version = "0.2.1", path = "../../crates/short-hex-str" }

[dev-dependencies]
rand = "0.7.3"
aptos-config = { version = "0.2.1", path = "../../config", features = [
    "testing"
] }
aptos-temppath = { version = "0.2.1", path = "../../crates/aptos-temppath" }
netcore = { version = "0.2.1", path = "../netcore", features = ["fuzzing"] }