[package]
edition = "2024"
name = "nio-task"
version = "0.2.0"
authors = ["Nur <nurmohammed840@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "async task implementation"
readme = "README.md"
keywords = [
"nio",
"async",
"task",
]
license = "Apache-2.0"
repository = "https://github.com/nurmohammed840/nio"
resolver = "2"
[lib]
name = "nio_task"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "cancel"
path = "tests/cancel.rs"
[[test]]
name = "join"
path = "tests/join.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "panic"
path = "tests/panic.rs"
[[test]]
name = "ready"
path = "tests/ready.rs"
[[test]]
name = "waker_panic"
path = "tests/waker_panic.rs"
[[test]]
name = "waker_pending"
path = "tests/waker_pending.rs"
[[test]]
name = "waker_ready"
path = "tests/waker_ready.rs"
[dependencies]
[dev-dependencies.atomic-waker]
version = "1"
[dev-dependencies.easy-parallel]
version = "3"
[dev-dependencies.flaky_test]
version = "0.2"
[dev-dependencies.flume]
version = "0.12"
default-features = false
[dev-dependencies.smol]
version = "2"