pubsub-rs 0.1.0

This crate provides a simple yet powerful publish-subscribe (pubsub) system that allows multiple subscribers to receive messages published to specific topics. It is designed to be thread-safe, async-friendly, memory-efficient, and supports clean shutdown.
Documentation
[dependencies.async-channel]
version = "2.3.1"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.tokio]
features = ["full"]
version = "1.43.0"

[lib]
name = "pubsub_rs"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "This crate provides a simple yet powerful publish-subscribe (pubsub) system that allows multiple subscribers to receive messages published to specific topics. It is designed to be thread-safe, async-friendly, memory-efficient, and supports clean shutdown."
edition = "2021"
keywords = ["pubsub", "publish", "subscribe"]
license = "MIT"
name = "pubsub-rs"
readme = "README.md"
repository = "https://github.com/alaingilbert/pubsub-rs"
version = "0.1.0"