[package]
edition = "2024"
name = "asupersync-macros"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc macros for asupersync structured concurrency runtime"
readme = "README.md"
keywords = [
"async",
"structured",
"concurrency",
"macros",
"proc-macro",
]
categories = [
"asynchronous",
"concurrency",
]
license = "LicenseRef-MIT-OpenAI-Anthropic-Rider"
repository = "https://github.com/Dicklesworthstone/asupersync"
[lib]
name = "asupersync_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "compile_fail_tests"
path = "tests/compile_fail_tests.rs"
[[test]]
name = "macro_spawn_closure"
path = "tests/macro_spawn_closure.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
"visit",
]
[dev-dependencies.trybuild]
version = "1.0"
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"