event_bus.rs/Cargo.toml
github-actions[bot] 5c883b62bf
chore: release v0.1.7 (#14)
* chore: release v0.1.7

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Víctor Martínez <49537445+JasterV@users.noreply.github.com>
2026-03-02 02:25:30 +01:00

25 lines
802 B
TOML

[package]
name = "event_bus_rs"
version = "0.1.7"
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]
async-broadcast = "0.7"
async-stream = "0.3"
dashmap = "6.1.0"
futures = "0.3"
thiserror = "2.0.18"
[dev-dependencies]
fake = "4.4.0"
proptest = { version = "1.10.0", features = ["attr-macro"] }
test-strategy = "0.4.5"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }