rsignals 0.1.0

One-shot multi-signaler / multi-waiter fail-safe broadcast event for thread and task coordination (MPMC, sync + async, zero deps, no unsafe)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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]