mirror of
https://github.com/AtHeartEngineering/rust-libp2p-dandelion.git
synced 2026-01-09 22:38:20 -05:00
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "libp2p-kad"
|
|
edition = "2021"
|
|
rust-version = "1.56.1"
|
|
description = "Kademlia protocol for libp2p"
|
|
version = "0.40.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]
|
|
arrayvec = "0.7.2"
|
|
bytes = "1"
|
|
either = "1.5"
|
|
fnv = "1.0"
|
|
asynchronous-codec = "0.6"
|
|
futures = "0.3.1"
|
|
log = "0.4"
|
|
libp2p-core = { version = "0.36.0", path = "../../core", default-features = false }
|
|
libp2p-swarm = { version = "0.39.0", path = "../../swarm" }
|
|
prost = "0.11"
|
|
rand = "0.7.2"
|
|
sha2 = "0.10.0"
|
|
smallvec = "1.6.1"
|
|
uint = "0.9"
|
|
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
|
void = "1.0"
|
|
futures-timer = "3.0.2"
|
|
instant = "0.1.11"
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.9.0"
|
|
futures-timer = "3.0"
|
|
libp2p-noise = { path = "../../transports/noise" }
|
|
libp2p-yamux = { path = "../../muxers/yamux" }
|
|
quickcheck = "0.9.0"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.11"
|
|
|
|
[features]
|
|
serde = ["dep:serde", "bytes/serde"]
|