event_bus.rs/Cargo.toml
dependabot[bot] 6036db0d4a
chore(deps): bump test-strategy from 0.4.3 to 0.4.5 (#19)
Bumps [test-strategy](https://github.com/frozenlib/test-strategy) from 0.4.3 to 0.4.5.
- [Commits](https://github.com/frozenlib/test-strategy/compare/v0.4.3...v0.4.5)

---
updated-dependencies:
- dependency-name: test-strategy
  dependency-version: 0.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-01 19:35:41 +01:00

25 lines
801 B
TOML

[package]
name = "event_bus_rs"
version = "0.1.6"
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.17"
[dev-dependencies]
fake = "4.4.0"
proptest = { version = "1.9.0", features = ["attr-macro"] }
test-strategy = "0.4.5"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }