From d3ac40a44c5dec3f56393876c669ce7e0819a69e Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 15 Jul 2026 02:41:14 +0800 Subject: feat(picker): add `mingling_support` feature and `is_flag` field Rename the `core` feature to `mingling_support` in `mingling_picker` and propagate it through `mingling_picker_macros`. Add the `is_flag` field to `PickerTag` to indicate participation in parsing after a `--` separator. Remove empty `seek.rs` file. --- mingling_picker/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mingling_picker/src/lib.rs') diff --git a/mingling_picker/src/lib.rs b/mingling_picker/src/lib.rs index fa45d71..d2885d9 100644 --- a/mingling_picker/src/lib.rs +++ b/mingling_picker/src/lib.rs @@ -23,8 +23,8 @@ pub mod macros { pub use mingling_picker_macros::*; } -#[cfg(feature = "core")] +#[cfg(feature = "mingling_support")] mod corebind; -#[cfg(feature = "core")] +#[cfg(feature = "mingling_support")] pub use corebind::*; -- cgit