2017-12-13 12:08:40 +01:00
|
|
|
[package]
|
|
|
|
name = "libp2p-identify"
|
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 = "Nodes identifcation protocol for libp2p"
|
2022-12-12 12:30:23 +01:00
|
|
|
version = "0.42.0"
|
2017-12-13 12:08:40 +01: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-12-13 12:08:40 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-05 18:28:47 +02:00
|
|
|
asynchronous-codec = "0.6"
|
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"
|
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-03-07 14:24:00 +01:00
|
|
|
log = "0.4.1"
|
2023-01-04 19:09:43 +00:00
|
|
|
lru = "0.9.0"
|
2022-11-02 23:02:21 +11:00
|
|
|
prost-codec = { version = "0.3", path = "../../misc/prost-codec" }
|
2022-08-16 08:49:09 +02:00
|
|
|
prost = "0.11"
|
2021-03-15 12:31:21 +01:00
|
|
|
smallvec = "1.6.1"
|
2022-05-05 18:28:47 +02:00
|
|
|
thiserror = "1.0"
|
2022-06-07 13:42:34 +02:00
|
|
|
void = "1.0"
|
2023-01-18 10:05:59 +11:00
|
|
|
either = "1.8.0"
|
2017-12-13 12:08:40 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-06-29 06:37:57 +02:00
|
|
|
async-std = { version = "1.6.2", features = ["attributes"] }
|
2022-12-02 18:06:09 +01:00
|
|
|
env_logger = "0.10"
|
2022-12-13 07:58:01 +11:00
|
|
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
|
|
|
libp2p-yamux = { path = "../../muxers/yamux" }
|
|
|
|
libp2p-noise = { path = "../../transports/noise" }
|
|
|
|
libp2p-swarm = { path = "../../swarm", features = ["async-std"] }
|
|
|
|
libp2p-tcp = { path = "../../transports/tcp", features = ["async-io"] }
|
2020-01-15 12:02:02 +01: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"]
|