[package]
edition = "2024"
rust-version = "1.85.0"
name = "atask"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An async task implementation"
documentation = "https://docs.rs/atask"
readme = "README.md"
keywords = [
"async",
"async-task",
"executor",
"future",
]
categories = [
"asynchronous",
"concurrency",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Spartan2909/atask"
[features]
default = ["std"]
std = []
[lib]
name = "atask"
path = "src/lib.rs"
[dependencies.pin-project]
version = "1.1.10"
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
missing_inline_in_public_items = "warn"
multiple_unsafe_ops_per_block = "deny"
must_use_candidate = "allow"
non_send_fields_in_send_ty = "allow"
option_if_let_else = "allow"
redundant_pub_crate = "allow"
semicolon_inside_block = "warn"
todo = "warn"
undocumented_unsafe_blocks = "deny"
use_self = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "forbid"
[lints.rustdoc]
broken_intra_doc_links = "deny"