eventbuzz 0.2.2

A safe, fast, concurrent event publish/subscribe system based on tokio(async), inspired by Spring events.
Documentation
[dependencies.async-trait]
optional = true
version = "0.1"

[dependencies.eventbuzz_core]
version = "0.2"

[dependencies.tokio]
features = ["rt-multi-thread", "sync", "macros", "time"]
optional = true
version = "1.39"

[features]
asynchronous = ["tokio", "async-trait"]
default = ["synchronous"]
synchronous = []

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

[package]
authors = ["photowey <photowey@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous"]
description = """
A safe, fast, concurrent event publish/subscribe system based on tokio(async), inspired by Spring events.
"""
documentation = "https://docs.rs/eventbuzz"
edition = "2021"
homepage = "https://github.com/photowey/eventbuzz"
keywords = ["tokio", "eventbus", "pubsub", "asynchronous", "Spring"]
license = "Apache-2.0"
name = "eventbuzz"
readme = "README.md"
repository = "https://github.com/photowey/eventbuzz"
version = "0.2.2"

[package.metadata.docs.rs]
features = ["synchronous", "asynchronous"]