async-deferred 0.2.0

A lightweight utility for spawning async tasks with fire-and-forget semantics and deferred result retrieval.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "async-deferred"
version = "0.2.0"
edition = "2021"
authors = ["Azy"]
description = "A lightweight utility for spawning async tasks with fire-and-forget semantics and deferred result retrieval."
license = "MIT"
repository = "https://github.com/I-Azy-I/async-deferred"
readme = "README.md"
categories = ["asynchronous", "concurrency", "data-structures"]
keywords = ["async", "deferred", "task", "utility", "tokio"]
documentation = "https://docs.rs/async-deferred"
homepage = "https://github.com/I-Azy-I/async-deferred"

[dependencies]
tokio = { version = "1.*", features = ["rt-multi-thread", "rt", "macros", "sync"]}
[dev-dependencies]
tokio-test = "0.4"