# 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 = "2021" name = "eventbuzz" version = "0.2.2" authors = ["photowey "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ A safe, fast, concurrent event publish/subscribe system based on tokio(async), inspired by Spring events. """ homepage = "https://github.com/photowey/eventbuzz" documentation = "https://docs.rs/eventbuzz" readme = "README.md" keywords = [ "tokio", "eventbus", "pubsub", "asynchronous", "Spring", ] categories = ["asynchronous"] license = "Apache-2.0" repository = "https://github.com/photowey/eventbuzz" [package.metadata.docs.rs] features = [ "synchronous", "asynchronous", ] [lib] name = "eventbuzz" path = "src/lib.rs" [dependencies.async-trait] version = "0.1" optional = true [dependencies.eventbuzz_core] version = "0.2" [dependencies.tokio] version = "1.39" features = [ "rt-multi-thread", "sync", "macros", "time", ] optional = true [features] asynchronous = [ "tokio", "async-trait", ] default = ["synchronous"] synchronous = []