46e2c74a98
* Rename to nym-task * Update imports to use nym_task * Update to nym_task in explicit module prefix * Touchups and rustfmt * rustfmt * crate metadata * fix nym-connect-android
28 lines
744 B
TOML
28 lines
744 B
TOML
[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"] }
|