Skip to content

Commit

Permalink
Sort dependency list in gossipsub
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed May 22, 2023
1 parent 281b88a commit f11f9e4
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions protocols/gossipsub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,33 @@ categories = ["network-programming", "asynchronous"]
wasm-bindgen = ["getrandom/js", "instant/wasm-bindgen"]

[dependencies]
either = "1.5"
libp2p-swarm = { workspace = true }
libp2p-core = { workspace = true }
libp2p-identity = { workspace = true }
bytes = "1.4"
asynchronous-codec = "0.6"
base64 = "0.21.0"
byteorder = "1.3.4"
bytes = "1.4"
either = "1.5"
fnv = "1.0.7"
futures = "0.3.28"
rand = "0.8"
asynchronous-codec = "0.6"
unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] }
getrandom = "0.2.9"
hex_fmt = "0.3.0"
instant = "0.1.11"
libp2p-core = { workspace = true }
libp2p-identity = { workspace = true }
libp2p-swarm = { workspace = true }
log = "0.4.11"
sha2 = "0.10.0"
base64 = "0.21.0"
smallvec = "1.6.1"
quick-protobuf = "0.8"
quick-protobuf-codec = { workspace = true }
hex_fmt = "0.3.0"
rand = "0.8"
regex = "1.8.1"
serde = { version = "1", optional = true, features = ["derive"] }
wasm-timer = "0.2.5"
instant = "0.1.11"
sha2 = "0.10.0"
smallvec = "1.6.1"
unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] }
void = "1.0.2"
wasm-timer = "0.2.5"

# Metrics dependencies
prometheus-client = "0.21.0"
getrandom = "0.2.9"

[dev-dependencies]
async-std = { version = "1.6.3", features = ["unstable"] }
Expand Down

0 comments on commit f11f9e4

Please sign in to comment.