From 6080e8c714a45175d914c6cede996578244acbf4 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 19 Dec 2022 11:04:10 +0100 Subject: [PATCH] fix(libp2p): Don't specify monorepo dev dependencies by version There is no need to specify dev dependencies from the monorepo by version. Versions can be inferred from the dependencies `Cargo.toml`. Specifying the version increases maintenance overhead, as they have to be bumped manually. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ec146a9c07..976d9fa0002 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -136,9 +136,9 @@ env_logger = "0.10.0" clap = { version = "4.0.13", features = ["derive"] } tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] } -libp2p-mplex = { version = "0.38.0", path = "muxers/mplex" } -libp2p-noise = { version = "0.41.0", path = "transports/noise" } -libp2p-tcp = { version = "0.38.0", path = "transports/tcp", features = ["tokio"] } +libp2p-mplex = { path = "muxers/mplex" } +libp2p-noise = { path = "transports/noise" } +libp2p-tcp = { path = "transports/tcp", features = ["tokio"] } [workspace] members = [