[package] name = "nym-task" version = "0.1.0" description = "Task handling" edition.workspace = true authors.workspace = true license.workspace = true repository.workspace = true [dependencies] futures = "0.3" log = { workspace = true } thiserror = "1.0.37" tokio = { version = "1.24.1", features = ["macros", "sync"] } [target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio] version = "1.24.1" features = ["signal", "time", "rt"] [target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures] version = "0.4" [target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen] version = "0.2.83" [dev-dependencies] tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal", "test-util", "macros"] }