Skip to content

Commit 0341817

Browse files
chore(swarm-test): specify versions for dependencies
Every crate released to crates.io must have versions specified for all prod. dependencies. Related: #3629. Pull-Request: #3650.
1 parent 4f18d04 commit 0341817

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

swarm-test/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ categories = ["network-programming", "asynchronous"]
1313

1414
[dependencies]
1515
async-trait = "0.1.57"
16-
libp2p-core = { path = "../core" }
17-
libp2p-identity = { path = "../identity" }
18-
libp2p-plaintext = { path = "../transports/plaintext" }
19-
libp2p-swarm = { path = "../swarm" }
20-
libp2p-tcp = { path = "../transports/tcp", features = ["async-io"] }
21-
libp2p-yamux = { path = "../muxers/yamux" }
16+
libp2p-core = { version = "0.39.1", path = "../core" }
17+
libp2p-identity = { version = "0.1.1", path = "../identity" }
18+
libp2p-plaintext = { version = "0.39.1", path = "../transports/plaintext" }
19+
libp2p-swarm = { version = "0.42.0", path = "../swarm" }
20+
libp2p-tcp = { version = "0.39.0", path = "../transports/tcp", features = ["async-io"] }
21+
libp2p-yamux = { version = "0.43.0", path = "../muxers/yamux" }
2222
futures = "0.3.27"
2323
log = "0.4.17"
2424
rand = "0.8.5"

0 commit comments

Comments
 (0)