2017-11-05 12:21:34 +01:00
|
|
|
[package]
|
|
|
|
name = "multistream-select"
|
2021-11-26 09:34:58 -07:00
|
|
|
edition = "2021"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.60.0"
|
2018-12-06 19:22:06 +01:00
|
|
|
description = "Multistream-select negotiation protocol for libp2p"
|
2022-11-18 22:04:16 +11:00
|
|
|
version = "0.12.1"
|
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"]
|
2017-11-05 12:21:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-12 12:48:37 +01:00
|
|
|
bytes = "1"
|
2020-03-11 14:49:41 +01:00
|
|
|
futures = "0.3"
|
2018-05-08 20:43:00 +02:00
|
|
|
log = "0.4"
|
2020-10-14 11:17:15 +02:00
|
|
|
pin-project = "1.0.0"
|
2021-03-15 12:31:21 +01:00
|
|
|
smallvec = "1.6.1"
|
2021-02-13 20:15:14 +01:00
|
|
|
unsigned-varint = "0.7"
|
2017-12-05 17:13:10 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-29 17:24:38 +02:00
|
|
|
async-std = "1.6.2"
|
2022-12-02 18:06:09 +01:00
|
|
|
env_logger = "0.10"
|
2022-12-13 07:58:01 +11:00
|
|
|
libp2p-core = { path = "../../core" }
|
|
|
|
libp2p-mplex = { path = "../../muxers/mplex" }
|
|
|
|
libp2p-plaintext = { path = "../../transports/plaintext" }
|
|
|
|
libp2p-swarm = { path = "../../swarm", features = ["async-std"] }
|
2022-09-22 12:48:32 +04:00
|
|
|
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
|
|
|
|
rand = "0.8"
|
2022-05-16 19:17:49 +02:00
|
|
|
rw-stream-sink = { version = "0.3.0", path = "../../misc/rw-stream-sink" }
|
2022-10-24 04:00:20 +02:00
|
|
|
|
|
|
|
# Passing arguments to the docsrs builder in order to properly document cfg's.
|
|
|
|
# More information: https://docs.rs/about/builds#cross-compiling
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
rustc-args = ["--cfg", "docsrs"]
|