[package]
edition = "2024"
name = "gen_mcf_macro"
version = "0.1.0"
authors = ["lino <lino_snsalias@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A macro working with crate `abs_sync` v0.2 to generate codes and types needed to implement `Future`
and `TrMayCancel` for a pattern that supports graceful cancellation in async programming.
"""
readme = "README.md"
keywords = ["async"]
categories = ["no-std"]
license = "MIT/Apache-2.0"
repository = "https://github.com/ljsnogard/gen_mcf_macro.rs"
[lib]
name = "gen_mcf_macro"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
]