[package]
edition = "2024"
rust-version = "1.85"
name = "application-toys"
version = "0.0.1"
authors = ["Soumyo Deep Gupta <deep.main.ac@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight application primitives for async Rust — typed event bus, async trait support, and more to come"
homepage = "https://github.com/d33p0st/application-toys"
documentation = "https://docs.rs/application-toys"
readme = "README.md"
keywords = [
"async",
"event",
"broadcast",
"application",
"tokio",
]
categories = [
"asynchronous",
"rust-patterns",
"concurrency",
]
license-file = "LICENSE"
repository = "https://github.com/d33p0st/application-toys"
[features]
default = []
event = [
"dep:tokio",
"tokio/full",
"dep:application-toys-macros",
"application-toys-macros/asynchronous-traits",
]
[lib]
name = "toys"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.application-toys-macros]
version = "0.0.1"
optional = true
[dependencies.tokio]
version = "1.52.3"
features = ["full"]
optional = true