nym-task 1.20.4

Task handling
Documentation
[package]
name = "nym-task"
version.workspace = true
description = "Task handling"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
cfg-if = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["macros", "sync"] }
tokio-util = { workspace = true, features = ["rt"] }
tracing = { workspace = true }

[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
workspace = true
features = ["signal", "time", "rt"]

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures]
workspace = true

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen]
workspace = true

[target."cfg(target_arch = \"wasm32\")".dependencies.wasmtimer]
workspace = true
features = ["tokio"]

[features]
tokio-tracing = ["tokio/tracing"]

[dev-dependencies]
anyhow = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "net", "signal", "test-util", "macros"] }
nym-test-utils = { workspace = true }

[lints]
workspace = true