From 68a652ed2f51d366bb8033497e6dfe545895410e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 23 Jul 2026 08:08:33 +0800 Subject: feat: scaffold crate structure and implement core macros Add the project skeleton, LICENSE files, README, Makefile, doc examples, and the initial implementation of `#[func]`, `invoke!`, and `select!` procedural macros. --- doc/args/func.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 doc/args/func.md (limited to 'doc/args/func.md') diff --git a/doc/args/func.md b/doc/args/func.md new file mode 100644 index 0000000..7d718a2 --- /dev/null +++ b/doc/args/func.md @@ -0,0 +1,4 @@ +Arguments parsed from the `#[func]` attribute. + +If the attribute is empty (`#[func]`), defaults to feature name `"async"`. +When a string literal is provided (`#[func("tokio_rt")]`), that value is used. -- cgit