[dependencies.async-sink]
default-features = false
version = "^0.2.3"
[dependencies.tokio]
default-features = false
features = ["sync"]
version = "^1.15.0"
[dependencies.tokio-stream]
default-features = false
features = ["io-util"]
version = "^0.1.17"
[features]
alloc = ["async-sink/alloc"]
default = ["alloc", "std"]
std = ["async-sink/std"]
time = ["tokio/time"]
[lib]
name = "smpsc"
path = "src/lib.rs"
[package]
authors = ["Adam Killam <adammkillam@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "network-programming", "no-std", "concurrency", "no-std"]
description = "Wrappers for tokio's mpsc channels which implement Stream and Sink."
documentation = "https://docs.rs/smpsc"
edition = "2018"
homepage = "https://github.com/amkillam/smpsc"
keywords = ["tokio", "stream", "sink", "channel", "mpsc"]
license = "MIT"
name = "smpsc"
readme = "README.md"
repository = "https://github.com/amkillam/smpsc"
rust-version = "1.40.0"
version = "0.1.3"