forked from libp2p/rust-libp2p
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow-up to libp2p#3170 (comment)
- Loading branch information
Showing
26 changed files
with
109 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-metrics" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Metrics for libp2p" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Max Inden <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -20,11 +20,11 @@ dcutr = ["libp2p-dcutr"] | |
|
||
[dependencies] | ||
libp2p-core = { version = "0.38.0", path = "../../core" } | ||
libp2p-dcutr = { version = "0.8.0", path = "../../protocols/dcutr", optional = true } | ||
libp2p-identify = { version = "0.41.0", path = "../../protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.42.0", path = "../../protocols/kad", optional = true } | ||
libp2p-ping = { version = "0.41.0", path = "../../protocols/ping", optional = true } | ||
libp2p-relay = { version = "0.14.0", path = "../../protocols/relay", optional = true } | ||
libp2p-dcutr = { version = "0.9.0", path = "../../protocols/dcutr", optional = true } | ||
libp2p-identify = { version = "0.42.0", path = "../../protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.43.0", path = "../../protocols/kad", optional = true } | ||
libp2p-ping = { version = "0.42.0", path = "../../protocols/ping", optional = true } | ||
libp2p-relay = { version = "0.15.0", path = "../../protocols/relay", optional = true } | ||
libp2p-swarm = { version = "0.42.0", path = "../../swarm" } | ||
prometheus-client = "0.18.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-autonat" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "NAT and firewall detection for libp2p" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["David Craven <[email protected]>", "Elena Frank <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -20,7 +20,7 @@ futures-timer = "3.0" | |
instant = "0.1" | ||
libp2p-core = { version = "0.38.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.42.0", path = "../../swarm" } | ||
libp2p-request-response = { version = "0.23.0", path = "../request-response" } | ||
libp2p-request-response = { version = "0.24.0", path = "../request-response" } | ||
log = "0.4" | ||
rand = "0.8" | ||
prost = "0.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.9.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.8.0 | ||
|
||
- Update to `prost-codec` `v0.3.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-dcutr" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Direct connection upgrade through relay" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Max Inden <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.42.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.41.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-floodsub" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Floodsub protocol for libp2p" | ||
version = "0.41.0" | ||
version = "0.42.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.44.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.43.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-gossipsub" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Gossipsub protocol for libp2p" | ||
version = "0.43.0" | ||
version = "0.44.0" | ||
authors = ["Age Manning <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-identify" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Nodes identifcation protocol for libp2p" | ||
version = "0.41.0" | ||
version = "0.42.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.43.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.42.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-kad" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Kademlia protocol for libp2p" | ||
version = "0.42.0" | ||
version = "0.43.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.43.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.42.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-mdns" | ||
edition = "2021" | ||
rust-version = "1.62.0" | ||
version = "0.42.0" | ||
version = "0.43.0" | ||
description = "Implementation of the libp2p mDNS discovery method" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.42.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.41.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-ping" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Ping protocol for libp2p" | ||
version = "0.41.0" | ||
version = "0.42.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.15.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.14.0 | ||
|
||
- Update to `prost-codec` `v0.3.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-relay" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Communications relaying for libp2p" | ||
version = "0.14.0" | ||
version = "0.15.0" | ||
authors = ["Parity Technologies <[email protected]>", "Max Inden <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-rendezvous" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Rendezvous protocol for libp2p" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["The COMIT guys <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.24.0 [unreleased] | ||
|
||
- Update to `libp2p-swarm` `v0.42.0`. | ||
|
||
# 0.23.0 | ||
|
||
- Update to `libp2p-core` `v0.38.0`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-request-response" | |
edition = "2021" | ||
rust-version = "1.62.0" | ||
description = "Generic Request/Response Protocols" | ||
version = "0.23.0" | ||
version = "0.24.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|