Skip to content

Commit

Permalink
chore(swarm-test): specify versions for dependencies
Browse files Browse the repository at this point in the history
Every crate released to crates.io must have versions specified for all prod. dependencies.

Related: #3629.

Pull-Request: #3650.
  • Loading branch information
thomaseizinger committed Mar 21, 2023
1 parent 4f18d04 commit 0341817
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions swarm-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
async-trait = "0.1.57"
libp2p-core = { path = "../core" }
libp2p-identity = { path = "../identity" }
libp2p-plaintext = { path = "../transports/plaintext" }
libp2p-swarm = { path = "../swarm" }
libp2p-tcp = { path = "../transports/tcp", features = ["async-io"] }
libp2p-yamux = { path = "../muxers/yamux" }
libp2p-core = { version = "0.39.1", path = "../core" }
libp2p-identity = { version = "0.1.1", path = "../identity" }
libp2p-plaintext = { version = "0.39.1", path = "../transports/plaintext" }
libp2p-swarm = { version = "0.42.0", path = "../swarm" }
libp2p-tcp = { version = "0.39.0", path = "../transports/tcp", features = ["async-io"] }
libp2p-yamux = { version = "0.43.0", path = "../muxers/yamux" }
futures = "0.3.27"
log = "0.4.17"
rand = "0.8.5"
Expand Down

0 comments on commit 0341817

Please sign in to comment.