simple_pubsub 0.5.3

A simple pubsub use dashmap and mpsc channel.
Documentation
[package]
name = "simple_pubsub"
version = "0.5.3"
edition = "2021"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/simple-pubsub"
repository = "https://github.com/tyrchen/utility-belt"
homepage = "https://github.com/tyrchen/utility-belt"
description = """
A simple pubsub use dashmap and mpsc channel.
"""
readme = "./README.md"
categories = ["development-tools"]
keywords = ["pubsub"]

[lib]
doctest = false

[dependencies]
# Should not use 5 until a fix for https://github.com/xacrimon/dashmap/issues/167
dashmap = "5"
tokio = { version = "1", features = ["sync", "rt-multi-thread"] }
tracing = "0.1"

[dev-dependencies]
anyhow = "1"
tokio = { version = "1", features = ["full"] }