[package]
edition = "2021"
name = "hash_events"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An MPMC event system that allows for custom events. Events are emitted with a payload, and subscribers to that event are stream of payloads. For each event, all subscribers are triggered."
readme = "README.md"
keywords = [
"event",
"async",
"hash",
"subscribe",
"emit",
]
categories = ["asynchronous"]
license = "GPL-3.0"
repository = "https://gitlab.com/CreativeStoic/hash_events.git"
[lib]
name = "hash_events"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3.0"
[dependencies.futures-lite]
version = "1.12.0"