message_worker 0.2.0

Message Worker is a low-ish level library for Rust for the creation of event-listeners using futures and streams. Notably MW supports non-sync and non-send (i.e. non-thread-safe) contexts within listeners.
Documentation
[package]
name = "message_worker"
version = "0.2.0"
authors = ["Nick Webster <nick@nick.geek.nz>"]
description = "Message Worker is a low-ish level library for Rust for the creation of event-listeners using futures and streams. Notably MW supports non-sync and non-send (i.e. non-thread-safe) contexts within listeners."
readme = "README.md"
edition = "2018"
license = "MPL-2.0"
categories = ["asynchronous", "concurrency"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "~0.2", features = ["rt-threaded", "rt-util", "sync", "macros", "stream", "test-util", "blocking"] }
anyhow = "^1.0.40"
futures = "~0.3.15"

[dev-dependencies]
deno_core = "~0.88.0"