jaeb 0.2.2

simple actor based event bus
Documentation
[package]
name = "jaeb"
version = "0.2.2"
edition = "2024"
authors = ["linket <t.linke@pripares.com>"]
description = "simple actor based event bus"
license = "MIT"
repository = "https://github.com/LinkeTh/jaeb"
keywords = ["event-bus", "actor", "tokio", "async", "pubsub"]
categories = ["asynchronous", "concurrency"]
readme = "README.md"
rust-version = "1.88"

[lib]
path = "src/lib.rs"

[workspace]
members = [
    ".",
    "examples/jaeb-demo",
    "examples/summer-jaeb-demo",
    "summer-jaeb-macros",
    "summer-jaeb",
]
[dependencies]
metrics = { version = "0.24", optional = true }
tokio = { version = "1.51", features = ["rt", "rt-multi-thread", "sync", "macros", "time"] }
tracing = { version = "0.1", features = ["std", "log"] }

[features]
default = []
metrics = ["dep:metrics"]

[dev-dependencies]
criterion = { version = "0.8", features = ["async_tokio"] }
tokio = { version = "1.51", features = ["full", "test-util"] }

[[bench]]
name = "throughput"
harness = false