smpsc 0.2.0

Wrappers for tokio's mpsc channels which implement Stream and Sink.
Documentation
[dependencies.async-sink]
default-features = false
version = "^0.3.0"

[dependencies.tokio]
default-features = false
features = ["sync"]
version = "^1.15.0"

[dependencies.tokio-stream]
default-features = false
features = ["io-util"]
version = "^0.1.17"

[dev-dependencies.futures-test]
default-features = false
features = ["std"]
version = "^0.3.28"

[dev-dependencies.futures-util]
default-features = false
features = ["std", "alloc"]
version = "^0.3.28"

[dev-dependencies.tokio]
default-features = false
features = ["io-util", "macros", "rt-multi-thread", "sync"]
version = "^1.15.0"

[dev-dependencies.tokio-stream]
default-features = false
features = ["io-util"]
version = "^0.1.17"

[dev-dependencies.tokio-stream-util]
default-features = false
features = ["sink", "std", "alloc", "io"]
version = "^0.2.8"

[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.2.0"

[[test]]
name = "sink"
path = "tests/sink.rs"

[[test]]
name = "sink_fanout"
path = "tests/sink_fanout.rs"