jaeb 0.2.2

simple actor based event bus
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "jaeb"
version = "0.2.2"
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 = "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 = "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 = "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",
]