oneshot 0.1.6

Oneshot spsc channel with (potentially) lock-free non-blocking send, and a receiver supporting both thread blocking receive operations as well as Future based async polling.
Documentation
[[bench]]
harness = false
name = "benches"
[dev-dependencies.criterion]
version = "0.3"

[features]
async = []
default = ["std", "async"]
std = []

[package]
authors = ["Linus Färnstrand <faern@faern.net>"]
categories = ["asynchronous", "concurrency"]
description = "Oneshot spsc channel with (potentially) lock-free non-blocking send, and a receiver supporting\nboth thread blocking receive operations as well as Future based async polling.\n"
edition = "2021"
keywords = ["oneshot", "spsc", "async", "sync", "channel"]
license = "MIT OR Apache-2.0"
name = "oneshot"
readme = "README.md"
repository = "https://github.com/faern/oneshot"
rust-version = "1.60.0"
version = "0.1.6"
[target."cfg(loom)".dependencies.loom]
features = ["futures"]
version = "0.5.3"
[target."cfg(not(loom))".dev-dependencies.async-std]
features = ["attributes"]
version = "1"

[target."cfg(not(loom))".dev-dependencies.tokio]
features = ["rt", "rt-multi-thread", "macros", "time"]
version = "1"