From 538516a2104edba2c35b1f4ce40ec5a25589b62b Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 14 Jul 2026 19:10:05 +0800 Subject: feat(picker): add optional `core` feature with re-exports Define a `core` feature in mingling_picker that gates a new `corebind` module and re-exports its contents. The module is propagated to the upstream `mingling` crate under the same feature flag. --- mingling/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling') diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index ba87f85..9b13408 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -91,6 +91,9 @@ pub mod picker { pub mod parselib { pub use mingling_picker::parselib::*; } + + #[cfg(feature = "core")] + pub use mingling_picker::corebind::*; } /// Re-export of all macros from `mingling_macros`. -- cgit