-
Notifications
You must be signed in to change notification settings - Fork 949
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
ProtocolsHandler::InboundOpenInfo
. (#1714)
* Add `ProtocolsHandler::InboundOpenInfo`. * Update swarm/src/protocols_handler/multi.rs Co-authored-by: Roman Borschel <[email protected]> * Update CHANGELOGs and versions. Co-authored-by: Roman Borschel <[email protected]>
- Loading branch information
Showing
32 changed files
with
337 additions
and
204 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p" | ||
edition = "2018" | ||
description = "Peer-to-peer networking library" | ||
version = "0.24.0" | ||
version = "0.25.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -65,18 +65,18 @@ futures = "0.3.1" | |
lazy_static = "1.2" | ||
libp2p-core = { version = "0.21.0", path = "core" } | ||
libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" } | ||
libp2p-floodsub = { version = "0.21.0", path = "protocols/floodsub", optional = true } | ||
libp2p-gossipsub = { version = "0.21.0", path = "./protocols/gossipsub", optional = true } | ||
libp2p-identify = { version = "0.21.0", path = "protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.22.0", path = "protocols/kad", optional = true } | ||
libp2p-floodsub = { version = "0.22.0", path = "protocols/floodsub", optional = true } | ||
libp2p-gossipsub = { version = "0.22.0", path = "./protocols/gossipsub", optional = true } | ||
libp2p-identify = { version = "0.22.0", path = "protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.23.0", path = "protocols/kad", optional = true } | ||
libp2p-mplex = { version = "0.21.0", path = "muxers/mplex", optional = true } | ||
libp2p-noise = { version = "0.23.0", path = "protocols/noise", optional = true } | ||
libp2p-ping = { version = "0.21.0", path = "protocols/ping", optional = true } | ||
libp2p-ping = { version = "0.22.0", path = "protocols/ping", optional = true } | ||
libp2p-plaintext = { version = "0.21.0", path = "protocols/plaintext", optional = true } | ||
libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true } | ||
libp2p-request-response = { version = "0.2.0", path = "protocols/request-response", optional = true } | ||
libp2p-request-response = { version = "0.3.0", path = "protocols/request-response", optional = true } | ||
libp2p-secio = { version = "0.21.0", path = "protocols/secio", default-features = false, optional = true } | ||
libp2p-swarm = { version = "0.21.0", path = "swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "swarm" } | ||
libp2p-uds = { version = "0.21.0", path = "transports/uds", optional = true } | ||
libp2p-wasm-ext = { version = "0.21.0", path = "transports/wasm-ext", optional = true } | ||
libp2p-yamux = { version = "0.21.0", path = "muxers/yamux", optional = true } | ||
|
@@ -90,7 +90,7 @@ wasm-timer = "0.2.4" | |
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] | ||
libp2p-deflate = { version = "0.21.0", path = "protocols/deflate", optional = true } | ||
libp2p-dns = { version = "0.21.0", path = "transports/dns", optional = true } | ||
libp2p-mdns = { version = "0.21.0", path = "protocols/mdns", optional = true } | ||
libp2p-mdns = { version = "0.22.0", path = "protocols/mdns", optional = true } | ||
libp2p-tcp = { version = "0.21.0", path = "transports/tcp", optional = true } | ||
libp2p-websocket = { version = "0.22.0", path = "transports/websocket", optional = true } | ||
|
||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-floodsub" | ||
edition = "2018" | ||
description = "Floodsub protocol for libp2p" | ||
version = "0.21.0" | ||
version = "0.22.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -14,7 +14,7 @@ cuckoofilter = "0.3.2" | |
fnv = "1.0" | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
prost = "0.6.1" | ||
rand = "0.7" | ||
smallvec = "1.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 |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
name = "libp2p-gossipsub" | ||
edition = "2018" | ||
description = "Gossipsub protocol for libp2p" | ||
version = "0.21.0" | ||
version = "0.22.0" | ||
authors = ["Age Manning <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
keywords = ["peer-to-peer", "libp2p", "networking"] | ||
categories = ["network-programming", "asynchronous"] | ||
|
||
[dependencies] | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
bytes = "0.5.4" | ||
byteorder = "1.3.2" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-identify" | ||
edition = "2018" | ||
description = "Nodes identifcation protocol for libp2p" | ||
version = "0.21.0" | ||
version = "0.22.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] | |
[dependencies] | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
log = "0.4.1" | ||
prost = "0.6.1" | ||
smallvec = "1.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
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-kad" | ||
edition = "2018" | ||
description = "Kademlia protocol for libp2p" | ||
version = "0.22.1" | ||
version = "0.23.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -18,7 +18,7 @@ futures_codec = "0.4" | |
futures = "0.3.1" | ||
log = "0.4" | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
multihash = "0.11.0" | ||
prost = "0.6.1" | ||
rand = "0.7.2" | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "libp2p-mdns" | ||
edition = "2018" | ||
version = "0.21.0" | ||
version = "0.22.0" | ||
description = "Implementation of the libp2p mDNS discovery method" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -17,7 +17,7 @@ either = "1.5.3" | |
futures = "0.3.1" | ||
lazy_static = "1.2" | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
log = "0.4" | ||
net2 = "0.2" | ||
rand = "0.7" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-ping" | ||
edition = "2018" | ||
description = "Ping protocol for libp2p" | ||
version = "0.21.0" | ||
version = "0.22.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] | |
[dependencies] | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.21.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.21.0", path = "../../swarm" } | ||
libp2p-swarm = { version = "0.22.0", path = "../../swarm" } | ||
log = "0.4.1" | ||
rand = "0.7.2" | ||
void = "1.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
Oops, something went wrong.