2022-05-16 19:17:49 +02:00
|
|
|
[package]
|
|
|
|
name = "rw-stream-sink"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Adaptator between Stream/Sink and AsyncRead/AsyncWrite"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.60.0"
|
2022-05-16 19:17:49 +02:00
|
|
|
version = "0.3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
keywords = ["networking"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-31 23:34:17 +00:00
|
|
|
futures = "0.3.26"
|
2022-05-20 09:09:02 +02:00
|
|
|
pin-project = "1.0.10"
|
2022-05-16 19:17:49 +02:00
|
|
|
static_assertions = "1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
async-std = "1.0"
|
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"]
|