-
Notifications
You must be signed in to change notification settings - Fork 964
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into libp2p-quic
- Loading branch information
Showing
73 changed files
with
244 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[alias] | ||
# Temporary solution to have clippy config in a single place until https://github.com/rust-lang/rust-clippy/blob/master/doc/roadmap-2021.md#lintstoml-configuration is shipped. | ||
custom-clippy = "clippy -- -A clippy::type_complexity -A clippy::pedantic -A clippy::style -D warnings" |
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 |
---|---|---|
|
@@ -152,8 +152,7 @@ jobs: | |
- name: Run cargo clippy | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: clippy | ||
args: -- -A clippy::type_complexity -A clippy::pedantic -A clippy::style | ||
command: custom-clippy # cargo alias to allow reuse of config locally | ||
|
||
integration-test: | ||
name: Integration tests | ||
|
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.39.1" | ||
version = "0.40.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -66,36 +66,36 @@ atomic = "0.5.0" | |
bytes = "1" | ||
futures = "0.3.1" | ||
lazy_static = "1.2" | ||
libp2p-core = { version = "0.29.0", path = "core", default-features = false } | ||
libp2p-floodsub = { version = "0.30.0", path = "protocols/floodsub", optional = true } | ||
libp2p-gossipsub = { version = "0.32.0", path = "./protocols/gossipsub", optional = true } | ||
libp2p-identify = { version = "0.30.0", path = "protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.31.0", path = "protocols/kad", optional = true } | ||
libp2p-mplex = { version = "0.29.0", path = "muxers/mplex", optional = true } | ||
libp2p-noise = { version = "0.32.0", path = "transports/noise", optional = true } | ||
libp2p-ping = { version = "0.30.0", path = "protocols/ping", optional = true } | ||
libp2p-plaintext = { version = "0.29.0", path = "transports/plaintext", optional = true } | ||
libp2p-core = { version = "0.30.0", path = "core", default-features = false } | ||
libp2p-floodsub = { version = "0.31.0", path = "protocols/floodsub", optional = true } | ||
libp2p-gossipsub = { version = "0.33.0", path = "./protocols/gossipsub", optional = true } | ||
libp2p-identify = { version = "0.31.0", path = "protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.32.0", path = "protocols/kad", optional = true } | ||
libp2p-mplex = { version = "0.30.0", path = "muxers/mplex", optional = true } | ||
libp2p-noise = { version = "0.33.0", path = "transports/noise", optional = true } | ||
libp2p-ping = { version = "0.31.0", path = "protocols/ping", optional = true } | ||
libp2p-plaintext = { version = "0.30.0", path = "transports/plaintext", optional = true } | ||
libp2p-pnet = { version = "0.21.0", path = "transports/pnet", optional = true } | ||
libp2p-relay = { version = "0.3.0", path = "protocols/relay", optional = true } | ||
libp2p-request-response = { version = "0.12.0", path = "protocols/request-response", optional = true } | ||
libp2p-swarm = { version = "0.30.0", path = "swarm" } | ||
libp2p-relay = { version = "0.4.0", path = "protocols/relay", optional = true } | ||
libp2p-request-response = { version = "0.13.0", path = "protocols/request-response", optional = true } | ||
libp2p-swarm = { version = "0.31.0", path = "swarm" } | ||
libp2p-swarm-derive = { version = "0.24.0", path = "swarm-derive" } | ||
libp2p-uds = { version = "0.29.0", path = "transports/uds", optional = true } | ||
libp2p-wasm-ext = { version = "0.29.0", path = "transports/wasm-ext", default-features = false, optional = true } | ||
libp2p-yamux = { version = "0.33.0", path = "muxers/yamux", optional = true } | ||
libp2p-uds = { version = "0.30.0", path = "transports/uds", optional = true } | ||
libp2p-wasm-ext = { version = "0.30.0", path = "transports/wasm-ext", default-features = false, optional = true } | ||
libp2p-yamux = { version = "0.34.0", path = "muxers/yamux", optional = true } | ||
multiaddr = { version = "0.13.0" } | ||
parking_lot = "0.11.0" | ||
pin-project = "1.0.0" | ||
smallvec = "1.6.1" | ||
wasm-timer = "0.2.4" | ||
|
||
[target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] | ||
libp2p-deflate = { version = "0.29.0", path = "transports/deflate", optional = true } | ||
libp2p-dns = { version = "0.29.0", path = "transports/dns", optional = true, default-features = false } | ||
libp2p-mdns = { version = "0.31.0", path = "protocols/mdns", optional = true } | ||
libp2p-deflate = { version = "0.30.0", path = "transports/deflate", optional = true } | ||
libp2p-dns = { version = "0.30.0", path = "transports/dns", optional = true, default-features = false } | ||
libp2p-mdns = { version = "0.32.0", path = "protocols/mdns", optional = true } | ||
libp2p-quic = { version = "0.6.0", path = "transports/quic", optional = true } | ||
libp2p-tcp = { version = "0.29.0", path = "transports/tcp", default-features = false, optional = true } | ||
libp2p-websocket = { version = "0.30.0", path = "transports/websocket", optional = true } | ||
libp2p-tcp = { version = "0.30.0", path = "transports/tcp", default-features = false, optional = true } | ||
libp2p-websocket = { version = "0.31.0", path = "transports/websocket", optional = true } | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.6.2", features = ["attributes"] } | ||
|
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-core" | ||
edition = "2018" | ||
description = "Core traits and structs of libp2p" | ||
version = "0.29.0" | ||
version = "0.30.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -18,7 +18,7 @@ fnv = "1.0" | |
futures = { version = "0.3.1", features = ["executor", "thread-pool"] } | ||
futures-timer = "3" | ||
lazy_static = "1.2" | ||
libsecp256k1 = { version = "0.5.0", optional = true } | ||
libsecp256k1 = { version = "0.6.0", optional = true } | ||
log = "0.4" | ||
multiaddr = { version = "0.13.0" } | ||
multihash = { version = "0.14", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } | ||
|
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
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,3 +1,7 @@ | ||
# 0.30.0 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.29.0 [2021-07-12] | ||
|
||
- Update dependencies. | ||
|
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-mplex" | ||
edition = "2018" | ||
description = "Mplex multiplexing protocol for libp2p" | ||
version = "0.29.0" | ||
version = "0.30.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] | |
bytes = "1" | ||
futures = "0.3.1" | ||
asynchronous-codec = "0.6" | ||
libp2p-core = { version = "0.29.0", path = "../../core" } | ||
libp2p-core = { version = "0.30.0", path = "../../core" } | ||
log = "0.4" | ||
nohash-hasher = "0.2" | ||
parking_lot = "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.34.0 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.33.0 [2021-07-12] | ||
|
||
- Update dependencies. | ||
|
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-yamux" | ||
edition = "2018" | ||
description = "Yamux multiplexing protocol for libp2p" | ||
version = "0.33.0" | ||
version = "0.34.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] | |
|
||
[dependencies] | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.29.0", path = "../../core" } | ||
libp2p-core = { version = "0.30.0", path = "../../core" } | ||
parking_lot = "0.11" | ||
thiserror = "1.0" | ||
yamux = "0.9.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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.31.0 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.30.0 [2021-07-12] | ||
|
||
- Update dependencies. | ||
|
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.30.0" | ||
version = "0.31.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"] | |
cuckoofilter = "0.5.0" | ||
fnv = "1.0" | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.29.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.30.0", path = "../../swarm" } | ||
libp2p-core = { version = "0.30.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" } | ||
log = "0.4" | ||
prost = "0.8" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.33.0 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.32.0 [2021-07-12] | ||
|
||
- Update dependencies. | ||
|
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,16 +2,16 @@ | |
name = "libp2p-gossipsub" | ||
edition = "2018" | ||
description = "Gossipsub protocol for libp2p" | ||
version = "0.32.0" | ||
version = "0.33.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.30.0", path = "../../swarm" } | ||
libp2p-core = { version = "0.29.0", path = "../../core" } | ||
libp2p-swarm = { version = "0.31.0", path = "../../swarm" } | ||
libp2p-core = { version = "0.30.0", path = "../../core" } | ||
bytes = "1.0" | ||
byteorder = "1.3.4" | ||
fnv = "1.0.7" | ||
|
Oops, something went wrong.