From 4083306fde4e32c6c751bba6e12296438753bd76 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 11 Aug 2023 16:54:47 +0200 Subject: [PATCH] fix(swarm): import libp2p-yamux dev-dependency via path Follow-up to https://github.com/libp2p/rust-libp2p/pull/4091. --- swarm/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 37d16d31497..189fa5c52a4 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -48,9 +48,9 @@ libp2p-identity = { workspace = true, features = ["ed25519"] } libp2p-kad = { path = "../protocols/kad" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. libp2p-ping = { path = "../protocols/ping" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. libp2p-plaintext = { path = "../transports/plaintext" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. -libp2p-swarm-derive = { path = "../swarm-derive" } +libp2p-swarm-derive = { path = "../swarm-derive" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. libp2p-swarm-test = { path = "../swarm-test" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. -libp2p-yamux = { workspace = true } +libp2p-yamux = { path = "../muxers/yamux" } # Using `path` here because this is a cyclic dev-dependency which otherwise breaks releasing. quickcheck = { workspace = true } void = "1" once_cell = "1.18.0"