2017-11-05 12:21:34 +01:00
|
|
|
[package]
|
|
|
|
name = "multistream-select"
|
2018-12-06 19:22:06 +01:00
|
|
|
description = "Multistream-select negotiation protocol for libp2p"
|
2020-09-16 10:27:33 +02:00
|
|
|
version = "0.8.3"
|
2017-11-05 12:21:34 +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"]
|
2018-12-11 10:45:28 +01:00
|
|
|
edition = "2018"
|
2017-11-05 12:21:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-21 15:35:55 +01:00
|
|
|
bytes = "0.5"
|
2020-03-11 14:49:41 +01:00
|
|
|
futures = "0.3"
|
2018-05-08 20:43:00 +02:00
|
|
|
log = "0.4"
|
2020-06-10 01:01:57 +09:00
|
|
|
pin-project = "0.4.17"
|
2019-11-19 11:18:16 +01:00
|
|
|
smallvec = "1.0"
|
2020-09-16 10:27:33 +02:00
|
|
|
unsigned-varint = "0.5"
|
2017-12-05 17:13:10 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-29 17:24:38 +02:00
|
|
|
async-std = "1.6.2"
|
2020-10-07 11:10:54 +02:00
|
|
|
env_logger = "*"
|
|
|
|
libp2p-core = { path = "../../core" }
|
|
|
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
|
|
|
libp2p-plaintext = { path = "../../protocols/plaintext" }
|
2019-11-06 16:09:15 +01:00
|
|
|
quickcheck = "0.9.0"
|
|
|
|
rand = "0.7.2"
|
2020-03-11 14:49:41 +01:00
|
|
|
rw-stream-sink = "0.2.1"
|