2017-11-22 10:58:06 +01:00
|
|
|
[package]
|
|
|
|
name = "libp2p-ping"
|
2021-11-26 09:34:58 -07:00
|
|
|
edition = "2021"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.62.0"
|
2018-12-06 19:22:06 +01:00
|
|
|
description = "Ping protocol for libp2p"
|
2022-12-12 12:30:23 +01:00
|
|
|
version = "0.42.0"
|
2018-07-11 13:06:42 +02:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2018-07-21 12:15:42 +02:00
|
|
|
license = "MIT"
|
2018-12-06 19:22:06 +01:00
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
keywords = ["peer-to-peer", "libp2p", "networking"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
2017-11-22 10:58:06 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-18 13:35:07 +11:00
|
|
|
either = "1.8.0"
|
2023-01-31 23:34:17 +00:00
|
|
|
futures = "0.3.26"
|
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" }
|
2018-02-14 18:24:59 +01:00
|
|
|
log = "0.4.1"
|
2022-09-22 12:48:32 +04:00
|
|
|
rand = "0.8"
|
2018-11-04 09:47:15 +01:00
|
|
|
void = "1.0"
|
2017-11-22 10:58:06 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-29 17:24:38 +02:00
|
|
|
async-std = "1.6.2"
|
2022-12-13 07:58:01 +11:00
|
|
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
|
|
|
libp2p-noise = { path = "../../transports/noise" }
|
|
|
|
libp2p-swarm = { path = "../../swarm", features = ["async-std", "macros"] }
|
|
|
|
libp2p-tcp = { path = "../../transports/tcp", features = ["async-io"] }
|
|
|
|
libp2p-yamux = { path = "../../muxers/yamux" }
|
2022-09-22 12:48:32 +04:00
|
|
|
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
|
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"]
|