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. --- test/async/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/async/src/lib.rs (limited to 'test/async/src/lib.rs') diff --git a/test/async/src/lib.rs b/test/async/src/lib.rs new file mode 100644 index 0000000..a5e000a --- /dev/null +++ b/test/async/src/lib.rs @@ -0,0 +1,2 @@ +#![allow(unused)] +include!("../../src/lib.rs"); -- cgit