[dependencies.anyhow]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.lits]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.tokio]
features = ["full"]
version = "1"
[dev-dependencies.env_logger]
version = "0.11.8"
[[example]]
name = "task"
path = "examples/task.rs"
[[example]]
name = "task_abort_timeout"
path = "examples/task_abort_timeout.rs"
[[example]]
name = "task_hub"
path = "examples/task_hub.rs"
[lib]
name = "tasking"
path = "src/lib.rs"
[lints.clippy]
collapsible_else_if = "allow"
disallowed_macros = "warn"
module_inception = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Simple tasking utility that automatically replaces tasks based on descriptors."
documentation = "https://docs.rs/tasking"
edition = "2024"
keywords = ["async", "task", "tokio"]
license = "MIT"
name = "tasking"
readme = "README.md"
repository = "https://github.com/vilicvane/rust-tasking"
version = "0.3.4"
[[test]]
name = "task"
path = "tests/task.rs"
[[test]]
name = "task_hub"
path = "tests/task_hub.rs"