From ebcd0d1edc4434364b7b4027dd4d4f277e62d989 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 29 Jul 2026 13:25:08 +0800 Subject: feat(picker_comp): add module to bridge picker and comp subsystems --- mingling/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mingling/src/lib.rs') diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index d7c8e8f..8f2540c 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -24,6 +24,10 @@ pub mod parser; #[cfg(feature = "picker")] pub mod picker; +/// Functionality when combining `picker` and `comp` +#[cfg(all(feature = "picker", feature = "comp"))] +pub mod picker_comp; + mod constants; /// Constants used throughout the Mingling framework. -- cgit