event_bus.rs/Cargo.toml
github-actions[bot] b15d3cf971
chore: release v0.1.1 (#5)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-28 15:09:56 +01:00

22 lines
702 B
TOML

[package]
name = "event_bus_rs"
version = "0.1.1"
edition = "2024"
description = "A runtime-agnostic, async, and thread-safe event bus for Rust."
keywords = ["event_bus", "pubsub", "event", "messaging", "event_based"]
categories = ["asynchronous", "data-structures", "rust-patterns"]
authors = ["Victor Martínez Montané <jaster.victor@gmail.com>"]
rust-version = "1.85.0"
homepage = "https://github.com/JasterV/event_bus.rs"
repository = "https://github.com/JasterV/event_bus.rs"
license = "MIT"
[dependencies]
dashmap = "6.1.0"
thiserror = "2.0.17"
async-broadcast = "0.7"
futures = "0.3"
async-stream = "0.3"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }