2021-09-08 00:36:52 +10:00
|
|
|
[package]
|
|
|
|
name = "libp2p-rendezvous"
|
|
|
|
edition = "2018"
|
|
|
|
description = "Rendezvous protocol for libp2p"
|
|
|
|
version = "0.1.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 = "0.6"
|
|
|
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
|
|
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
2021-09-14 13:53:59 +03:00
|
|
|
prost = "0.8"
|
2021-09-08 00:36:52 +10:00
|
|
|
void = "1"
|
|
|
|
log = "0.4"
|
|
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
thiserror = "1"
|
|
|
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
|
|
|
bimap = "0.6.1"
|
|
|
|
sha2 = "0.9"
|
|
|
|
rand = "0.8"
|
|
|
|
wasm-timer = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
libp2p = { path = "../.." }
|
|
|
|
rand = "0.8"
|
|
|
|
async-std = { version = "1", features = ["attributes"] }
|
|
|
|
env_logger = "0.8"
|
|
|
|
async-trait = "0.1"
|
|
|
|
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2021-09-14 13:53:59 +03:00
|
|
|
prost-build = "0.8"
|