topic-stream 0.1.2

Multi-topic publish-subscribe system in Rust with async support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "topic-stream"
description = "Multi-topic publish-subscribe system in Rust with async support"
version = "0.1.2"
edition = "2021"
license = "MIT"
keywords = ["async", "publish-subscribe", "broadcast"]
repository = "https://github.com/mchristou/topic_stream"
readme = "README.md"

[dependencies]
dashmap = "6.1.0"
futures = "0.3.31"
async-broadcast = "0.7.2"

[dev-dependencies]
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "time"] }