From 0b8e6e7d18abb94bd99553dc1d2b0ba5d4f265ea Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 18 Jun 2026 02:47:32 +0800 Subject: refactor: extract shared utilities and add space-system crate Extract rola-vcs/internal_macros into shared utils crates (shared_constants, shared_macros, space-system) and implement the Bucket enum with async space management --- rola-utils/space-system/macros/src/lib.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 rola-utils/space-system/macros/src/lib.rs (limited to 'rola-utils/space-system/macros/src/lib.rs') diff --git a/rola-utils/space-system/macros/src/lib.rs b/rola-utils/space-system/macros/src/lib.rs new file mode 100644 index 0000000..838155c --- /dev/null +++ b/rola-utils/space-system/macros/src/lib.rs @@ -0,0 +1,9 @@ +use crate::space_root_test::internal_space_root_test_derive; +use proc_macro::TokenStream; + +mod space_root_test; + +#[proc_macro_derive(SpaceRootTest, attributes(space_root_test_generic))] +pub fn space_root_test_derive(input: TokenStream) -> TokenStream { + internal_space_root_test_derive(input) +} -- cgit