[package]
edition = "2024"
rust-version = "1.88"
name = "jaeb"
version = "0.2.3"
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"]
test-utils = []
[lib]
name = "jaeb"
path = "src/lib.rs"
[[test]]
name = "backpressure"
path = "tests/backpressure.rs"
[[test]]
name = "builder_validation"
path = "tests/builder_validation.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 = "introspection"
path = "tests/introspection.rs"
[[test]]
name = "middleware"
path = "tests/middleware.rs"
[[test]]
name = "named_subscriptions"
path = "tests/named_subscriptions.rs"
[[test]]
name = "once"
path = "tests/once.rs"
[[test]]
name = "panic_safety"
path = "tests/panic_safety.rs"
[[test]]
name = "retry"
path = "tests/retry.rs"
[[test]]
name = "semaphore"
path = "tests/semaphore.rs"
[[test]]
name = "shutdown"
path = "tests/shutdown.rs"
[[test]]
name = "subscription_guard"
path = "tests/subscription_guard.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.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 = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"time",
]
[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",
]