|
|
[package] |
|
|
name = "libp2p-relay" |
|
|
edition = "2021" |
|
|
rust-version = { workspace = true } |
|
|
description = "Communications relaying for libp2p" |
|
|
version = "0.18.0" |
|
|
authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"] |
|
|
license = "MIT" |
|
|
repository = "https://github.com/libp2p/rust-libp2p" |
|
|
keywords = ["peer-to-peer", "libp2p", "networking"] |
|
|
categories = ["network-programming", "asynchronous"] |
|
|
|
|
|
[dependencies] |
|
|
asynchronous-codec = { workspace = true } |
|
|
bytes = "1" |
|
|
either = "1.12.0" |
|
|
futures = { workspace = true } |
|
|
futures-timer = "3" |
|
|
futures-bounded = { workspace = true } |
|
|
web-time = { workspace = true } |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-swarm = { workspace = true } |
|
|
libp2p-identity = { workspace = true } |
|
|
quick-protobuf = "0.8" |
|
|
quick-protobuf-codec = { workspace = true } |
|
|
rand = "0.8.4" |
|
|
static_assertions = "1" |
|
|
thiserror = "1.0" |
|
|
tracing = { workspace = true } |
|
|
void = "1" |
|
|
|
|
|
[dev-dependencies] |
|
|
libp2p-identity = { workspace = true, features = ["rand"] } |
|
|
libp2p-ping = { workspace = true } |
|
|
libp2p-plaintext = { workspace = true } |
|
|
libp2p-swarm = { workspace = true, features = ["macros", "async-std"] } |
|
|
libp2p-swarm-test = { workspace = true } |
|
|
libp2p-yamux = { workspace = true } |
|
|
quickcheck = { workspace = true } |
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs] |
|
|
all-features = true |
|
|
|
|
|
[lints] |
|
|
workspace = true |
|
|
|