|
|
[package] |
|
|
name = "libp2p-gossipsub" |
|
|
edition = "2021" |
|
|
rust-version = { workspace = true } |
|
|
description = "Gossipsub protocol for libp2p" |
|
|
version = "0.47.0" |
|
|
authors = ["Age Manning <Age@AgeManning.com>"] |
|
|
license = "MIT" |
|
|
repository = "https://github.com/libp2p/rust-libp2p" |
|
|
keywords = ["peer-to-peer", "libp2p", "networking"] |
|
|
categories = ["network-programming", "asynchronous"] |
|
|
|
|
|
[features] |
|
|
wasm-bindgen = ["getrandom/js"] |
|
|
|
|
|
[dependencies] |
|
|
asynchronous-codec = { workspace = true } |
|
|
base64 = "0.22.1" |
|
|
byteorder = "1.5.0" |
|
|
bytes = "1.6" |
|
|
either = "1.11" |
|
|
fnv = "1.0.7" |
|
|
futures = { workspace = true } |
|
|
futures-ticker = "0.0.3" |
|
|
getrandom = "0.2.15" |
|
|
hex_fmt = "0.3.0" |
|
|
web-time = { workspace = true } |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-identity = { workspace = true, features = ["rand"] } |
|
|
libp2p-swarm = { workspace = true } |
|
|
quick-protobuf = "0.8" |
|
|
quick-protobuf-codec = { workspace = true } |
|
|
rand = "0.8" |
|
|
regex = "1.10.5" |
|
|
serde = { version = "1", optional = true, features = ["derive"] } |
|
|
sha2 = "0.10.8" |
|
|
smallvec = "1.13.2" |
|
|
tracing = { workspace = true } |
|
|
void = "1.0.2" |
|
|
|
|
|
|
|
|
prometheus-client = { workspace = true } |
|
|
|
|
|
[dev-dependencies] |
|
|
async-std = { version = "1.6.3", features = ["unstable"] } |
|
|
hex = "0.4.2" |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-yamux = { workspace = true } |
|
|
libp2p-noise = { workspace = true } |
|
|
libp2p-swarm-test = { path = "../../swarm-test" } |
|
|
quickcheck = { workspace = true } |
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] } |
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs] |
|
|
all-features = true |
|
|
|
|
|
[lints] |
|
|
workspace = true |
|
|
|