[package]
edition = "2021"
rust-version = "1.70"
name = "rsignals"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "One-shot multi-signaler / multi-waiter fail-safe broadcast event for thread and task coordination (MPMC, sync + async, zero deps, no unsafe)"
documentation = "https://docs.rs/rsignals"
readme = "README.md"
keywords = [
"oneshot",
"broadcast",
"event",
"mpmc",
"synchronization",
]
categories = [
"concurrency",
"asynchronous",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/wushilin/rsignals"
[lib]
name = "rsignals"
path = "src/lib.rs"
[[test]]
name = "async_oneshot"
path = "tests/async_oneshot.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "many_to_many"
path = "tests/many_to_many.rs"
[[test]]
name = "oneshot"
path = "tests/oneshot.rs"
[dependencies]