[package]
edition = "2024"
rust-version = "1.85.1"
name = "tokio_worker"
version = "0.2.0"
authors = ["Awiteb <a@4rs.nl>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Asynchronous, message-driven workers for Tokio applications"
documentation = "https://docs.rs/tokio_worker"
readme = "README.md"
keywords = [
"tokio",
"worker",
]
license = "MIT"
repository = "https://git.4rs.nl/awiteb/tokio_worker.git"
[lib]
name = "tokio_worker"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "simple_arc"
path = "examples/simple_arc.rs"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
]
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"time",
"macros",
"rt-multi-thread",
]