|
|
[package] |
|
|
name = "libp2p-identify" |
|
|
edition = "2021" |
|
|
rust-version = { workspace = true } |
|
|
description = "Nodes identification protocol for libp2p" |
|
|
version = "0.45.0" |
|
|
authors = ["Parity Technologies <admin@parity.io>"] |
|
|
license = "MIT" |
|
|
repository = "https://github.com/libp2p/rust-libp2p" |
|
|
keywords = ["peer-to-peer", "libp2p", "networking"] |
|
|
categories = ["network-programming", "asynchronous"] |
|
|
|
|
|
[dependencies] |
|
|
asynchronous-codec = { workspace = true } |
|
|
futures = { workspace = true } |
|
|
futures-timer = "3.0.3" |
|
|
futures-bounded = { workspace = true } |
|
|
libp2p-core = { workspace = true } |
|
|
libp2p-swarm = { workspace = true } |
|
|
libp2p-identity = { workspace = true } |
|
|
lru = "0.12.3" |
|
|
quick-protobuf-codec = { workspace = true } |
|
|
quick-protobuf = "0.8" |
|
|
smallvec = "1.13.2" |
|
|
thiserror = "1.0" |
|
|
tracing = { workspace = true } |
|
|
void = "1.0" |
|
|
either = "1.12.0" |
|
|
|
|
|
[dev-dependencies] |
|
|
async-std = { version = "1.6.2", features = ["attributes"] } |
|
|
libp2p-swarm-test = { path = "../../swarm-test" } |
|
|
libp2p-swarm = { workspace = true, features = ["macros"] } |
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] } |
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs] |
|
|
all-features = true |
|
|
|
|
|
[lints] |
|
|
workspace = true |
|
|
|