mirror of
https://codeberg.org/JasterV/event_bus.rs.git
synced 2026-04-26 18:10:02 +00:00
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 2.0.17 to 2.0.18. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.17...2.0.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 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>
25 lines
801 B
TOML
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.18"
|
|
|
|
[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"] }
|