2020-06-29 17:08:40 +02:00
|
|
|
[package]
|
|
|
|
name = "libp2p-request-response"
|
|
|
|
edition = "2018"
|
|
|
|
description = "Generic Request/Response Protocols"
|
2021-07-22 22:34:13 +02:00
|
|
|
version = "0.13.0"
|
2020-06-29 17:08:40 +02:00
|
|
|
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]
|
|
|
|
async-trait = "0.1"
|
2021-01-12 12:48:37 +01:00
|
|
|
bytes = "1"
|
2020-06-29 17:08:40 +02:00
|
|
|
futures = "0.3.1"
|
2021-08-18 12:08:45 +02:00
|
|
|
libp2p-core = { version = "0.30.0", path = "../../core", default-features = false }
|
2021-07-22 22:34:13 +02:00
|
|
|
libp2p-swarm = { version = "0.31.0", path = "../../swarm" }
|
2020-08-12 16:04:54 +02:00
|
|
|
log = "0.4.11"
|
2020-09-09 11:04:20 +02:00
|
|
|
lru = "0.6"
|
2021-08-26 17:11:08 +02:00
|
|
|
minicbor = { version = "0.11", features = ["std", "derive"] }
|
2020-08-12 16:04:54 +02:00
|
|
|
rand = "0.7"
|
2021-03-15 12:31:21 +01:00
|
|
|
smallvec = "1.6.1"
|
2021-02-13 20:15:14 +01:00
|
|
|
unsigned-varint = { version = "0.7", features = ["std", "futures"] }
|
2020-06-29 17:08:40 +02:00
|
|
|
wasm-timer = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
async-std = "1.6.2"
|
2021-02-01 16:37:19 +01:00
|
|
|
libp2p-noise = { path = "../../transports/noise" }
|
2021-01-12 13:35:11 +01:00
|
|
|
libp2p-tcp = { path = "../../transports/tcp" }
|
2020-06-29 17:08:40 +02:00
|
|
|
libp2p-yamux = { path = "../../muxers/yamux" }
|
|
|
|
rand = "0.7"
|