|
|
[package] |
|
|
name = "libp2p-rendezvous" |
|
|
edition = "2021" |
|
|
rust-version = { workspace = true } |
|
|
description = "Rendezvous protocol for libp2p" |
|
|
version = "0.15.0" |
|
|
authors = ["The COMIT guys <hello@comit.network>"] |
|
|
license = "MIT" |
|
|
repository = "https://github.com/libp2p/rust-libp2p" |
|
|
keywords = ["peer-to-peer", "libp2p", "networking"] |
|
|
categories = ["network-programming", "asynchronous"] |
|
|
|
|
|
[dependencies] |
|
|
asynchronous-codec = { workspace = true } |
|
|
async-trait = "0.1" |
|
|
bimap = "0.6.3" |
|
|
futures = { workspace = true, features = ["std"] } |
|
|
futures-timer = "3.0.3" |
|
|
web-time = { workspace = true } |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-swarm = { workspace = true } |
|
|
libp2p-identity = { workspace = true } |
|
|
libp2p-request-response = { workspace = true } |
|
|
quick-protobuf = "0.8" |
|
|
quick-protobuf-codec = { workspace = true } |
|
|
rand = "0.8" |
|
|
thiserror = "1" |
|
|
tracing = { workspace = true } |
|
|
void = "1" |
|
|
|
|
|
[dev-dependencies] |
|
|
libp2p-swarm = { workspace = true, features = ["macros", "tokio"] } |
|
|
libp2p-noise = { workspace = true } |
|
|
libp2p-ping = { workspace = true } |
|
|
libp2p-identify = { workspace = true } |
|
|
libp2p-swarm-test = { path = "../../swarm-test" } |
|
|
libp2p-tcp = { workspace = true, features = ["tokio"] } |
|
|
libp2p-yamux = { workspace = true } |
|
|
rand = "0.8" |
|
|
tokio = { workspace = true, features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] } |
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] } |
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs] |
|
|
all-features = true |
|
|
|
|
|
[lints] |
|
|
workspace = true |
|
|
|