2021-09-08 00:36:52 +10:00
|
|
|
[package]
|
|
|
|
name = "libp2p-rendezvous"
|
2021-11-26 09:34:58 -07:00
|
|
|
edition = "2021"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.62.0"
|
2021-09-08 00:36:52 +10:00
|
|
|
description = "Rendezvous protocol for libp2p"
|
2022-12-12 12:30:23 +01:00
|
|
|
version = "0.12.0"
|
2021-09-08 00:36:52 +10:00
|
|
|
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"
|
|
|
|
bimap = "0.6.1"
|
2022-11-02 23:02:21 +11:00
|
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
2021-10-30 12:41:30 +02:00
|
|
|
futures-timer = "3.0.2"
|
|
|
|
instant = "0.1.11"
|
2022-12-20 09:52:08 +01:00
|
|
|
libp2p-core = { version = "0.39.0", path = "../../core" }
|
2022-12-09 15:44:08 +01:00
|
|
|
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }
|
2022-11-02 23:02:21 +11:00
|
|
|
log = "0.4"
|
|
|
|
prost = "0.11"
|
|
|
|
prost-codec = { version = "0.3.0", path = "../../misc/prost-codec" }
|
|
|
|
rand = "0.8"
|
|
|
|
sha2 = "0.10"
|
|
|
|
thiserror = "1"
|
|
|
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
|
|
|
void = "1"
|
2021-09-08 00:36:52 +10:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-25 18:39:49 +02:00
|
|
|
async-trait = "0.1"
|
2022-12-02 18:06:09 +01:00
|
|
|
env_logger = "0.10.0"
|
2022-12-13 07:58:01 +11:00
|
|
|
libp2p-swarm = { path = "../../swarm", features = ["macros", "tokio"] }
|
|
|
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
|
|
|
libp2p-noise = { path = "../../transports/noise" }
|
|
|
|
libp2p-ping = { path = "../ping" }
|
|
|
|
libp2p-identify = { path = "../identify" }
|
|
|
|
libp2p-yamux = { path = "../../muxers/yamux" }
|
|
|
|
libp2p-tcp = { path = "../../transports/tcp", features = ["tokio"] }
|
2021-09-08 00:36:52 +10:00
|
|
|
rand = "0.8"
|
2022-01-20 16:43:32 +08:00
|
|
|
tokio = { version = "1.15", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
|
2021-09-08 00:36:52 +10:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-08-16 08:49:09 +02:00
|
|
|
prost-build = "0.11"
|
2022-10-24 04:00:20 +02:00
|
|
|
|
2022-12-09 15:44:08 +01:00
|
|
|
# Passing arguments to the docsrs builder in order to properly document cfg's.
|
2022-10-24 04:00:20 +02:00
|
|
|
# More information: https://docs.rs/about/builds#cross-compiling
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
rustc-args = ["--cfg", "docsrs"]
|