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/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/async/Cargo.toml (limited to 'test/async/Cargo.toml') diff --git a/test/async/Cargo.toml b/test/async/Cargo.toml new file mode 100644 index 0000000..8184940 --- /dev/null +++ b/test/async/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "might_be_async_test_async" +version = "0.1.0" +edition = "2024" + +[features] +sync = [] +metadata_async = [] +custom_ft = [] +custom_invoke = [] + +[package.metadata.might_be_async] +default_feature_name = "metadata_async" + +[dependencies] +might_be_async = { path = "../.." } +futures = "0.3" -- cgit