From ce9821154a3bde53e38e72c511acbacb721573ce Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 20 Jun 2023 12:20:27 +0200 Subject: [PATCH] fix(cargo.toml): specify muxer harness by path only `libp2p-muxer-harness` is never published to crates.io. Specifying it with a version makes `cargo release` check crates.io for the the non-existing crate. Pull-Request: #4093. Co-Authored-By: Max Inden --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 547dbabbeb9..3d247cfa046 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ libp2p-kad = { version = "0.44.0", path = "protocols/kad" } libp2p-mdns = { version = "0.44.0", path = "protocols/mdns" } libp2p-metrics = { version = "0.13.0", path = "misc/metrics" } libp2p-mplex = { version = "0.40.0", path = "muxers/mplex" } -libp2p-muxer-test-harness = { version = "0.1.0", path = "muxers/test-harness" } +libp2p-muxer-test-harness = { path = "muxers/test-harness" } libp2p-noise = { version = "0.43.0", path = "transports/noise" } libp2p-perf = { version = "0.2.0", path = "protocols/perf" } libp2p-ping = { version = "0.43.0", path = "protocols/ping" }