From 6f66a3158f4a4b2bca42ec385abefbf4011618cc Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 20 Apr 2026 14:06:38 +0800 Subject: Move type registration to pack! and Groupped macros --- mingling/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'mingling/src/lib.rs') diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index 858b4b7..91bce8d 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -87,11 +87,13 @@ pub mod macros { pub use mingling_macros::node; /// Used to create a wrapper type for use with `Chain` and `Renderer` pub use mingling_macros::pack; - /// Internal macro for 'gen_program' used to finally generate the program - pub use mingling_macros::program_final_gen; #[cfg(feature = "comp")] /// Internal macro for 'gen_program' used to finally generate the completion structure - pub use mingling_macros::program_gen_completion; + pub use mingling_macros::program_comp_gen; + /// Internal macro for 'gen_program' used to finally generate the fallback + pub use mingling_macros::program_fallback_gen; + /// Internal macro for 'gen_program' used to finally generate the program + pub use mingling_macros::program_final_gen; // Used to generate program setup pub use mingling_macros::program_setup; /// Used to print content within a `Renderer` context -- cgit