-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move gossipsub into a separate crate (#5401)
* move gossipsub into a separate crate * Merge branch 'unstable' of github.com:sigp/lighthouse into separate-gossipsub * address review 2 * clippy beta * update logging to log gossipsub logs
- Loading branch information
Showing
45 changed files
with
662 additions
and
375 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,8 +5,8 @@ authors = ["Sigma Prime <[email protected]>"] | |
edition = { workspace = true } | ||
|
||
[dependencies] | ||
async-channel = { workspace = true } | ||
discv5 = { workspace = true } | ||
gossipsub = { workspace = true } | ||
unsigned-varint = { version = "0.6", features = ["codec"] } | ||
ssz_types = { workspace = true } | ||
types = { workspace = true } | ||
|
@@ -50,16 +50,12 @@ either = { workspace = true } | |
|
||
# Local dependencies | ||
futures-ticker = "0.0.3" | ||
futures-timer = "3.0.2" | ||
getrandom = "0.2.11" | ||
hex_fmt = "0.3.0" | ||
instant = "0.1.12" | ||
quick-protobuf = "0.8" | ||
void = "1.0.2" | ||
asynchronous-codec = "0.7.0" | ||
base64 = "0.21.5" | ||
libp2p-mplex = "0.41" | ||
quick-protobuf-codec = "0.3" | ||
|
||
[dependencies.libp2p] | ||
version = "0.53" | ||
|
@@ -72,7 +68,7 @@ slog-async = { workspace = true } | |
tempfile = { workspace = true } | ||
quickcheck = { workspace = true } | ||
quickcheck_macros = { workspace = true } | ||
async-std = { version = "1.6.3", features = ["unstable"] } | ||
async-channel = { workspace = true } | ||
|
||
[features] | ||
libp2p-websocket = [] | ||
|
Oops, something went wrong.