[package]
edition = "2024"
rust-version = "1.85"
name = "jaeb"
version = "0.2.0"
authors = ["linket <t.linke@pripares.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "simple actor based event bus"
readme = "README.md"
keywords = [
"event-bus",
"actor",
"tokio",
"async",
"pubsub",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT"
repository = "https://github.com/LinkeTh/jaeb"
[features]
default = []
metrics = ["dep:metrics"]
[lib]
name = "jaeb"
path = "src/lib.rs"
[[test]]
name = "backpressure"
path = "tests/backpressure.rs"
[[test]]
name = "clone"
path = "tests/clone.rs"
[[test]]
name = "dead_letter"
path = "tests/dead_letter.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "panic_safety"
path = "tests/panic_safety.rs"
[[test]]
name = "retry"
path = "tests/retry.rs"
[[test]]
name = "shutdown"
path = "tests/shutdown.rs"
[[test]]
name = "unsubscribe"
path = "tests/unsubscribe.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.metrics]
version = "0.24"
optional = true
[dependencies.tokio]
version = "1.51"
features = ["full"]
[dependencies.tracing]
version = "0.1"
features = [
"std",
"log",
]
[dev-dependencies.criterion]
version = "0.8"
features = ["async_tokio"]
[dev-dependencies.tokio]
version = "1.51"
features = [
"full",
"test-util",
]