Skip to content

Commit 70a067a

Browse files
committed
Update libp2p-rendezvous to fix build on nightly
1 parent fcb2f62 commit 70a067a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ libp2p-ping = { version = "0.31.0", path = "protocols/ping", optional = true }
8080
libp2p-plaintext = { version = "0.30.0", path = "transports/plaintext", optional = true }
8181
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
8282
libp2p-relay = { version = "0.4.0", path = "protocols/relay", optional = true }
83-
libp2p-rendezvous = { version = "0.1.0", path = "protocols/rendezvous", optional = true }
83+
libp2p-rendezvous = { version = "0.1.1", path = "protocols/rendezvous", optional = true }
8484
libp2p-request-response = { version = "0.13.0", path = "protocols/request-response", optional = true }
8585
libp2p-swarm = { version = "0.31.0", path = "swarm" }
8686
libp2p-swarm-derive = { version = "0.25.0", path = "swarm-derive" }

protocols/rendezvous/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-rendezvous"
33
edition = "2018"
44
description = "Rendezvous protocol for libp2p"
5-
version = "0.1.0"
5+
version = "0.1.1"
66
authors = ["The COMIT guys <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
1313
asynchronous-codec = "0.6"
1414
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
1515
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
16-
prost = "0.7"
16+
prost = "0.8"
1717
void = "1"
1818
log = "0.4"
1919
futures = { version = "0.3", default-features = false, features = ["std"] }
@@ -33,4 +33,4 @@ async-trait = "0.1"
3333
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
3434

3535
[build-dependencies]
36-
prost-build = "0.7"
36+
prost-build = "0.8"

0 commit comments

Comments
 (0)