From 06b7ae78ed4b86b80e9708206787326c1142249a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 11 Jul 2026 01:58:48 +0800 Subject: docs(dev): add Picker2 arguments parser issue page --- mingling/src/features.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mingling') diff --git a/mingling/src/features.rs b/mingling/src/features.rs index 4d0c50b..32ca5de 100644 --- a/mingling/src/features.rs +++ b/mingling/src/features.rs @@ -141,6 +141,17 @@ pub const MINGLING_PATHF: bool = false; #[cfg(feature = "pathf")] #[allow(unused)] pub const MINGLING_PATHF: bool = true; +/// Whether the `picker` feature is enabled +/// Current: `disabled` +#[cfg(not(feature = "picker"))] +#[allow(unused)] +pub const MINGLING_PICKER: bool = false; + +/// Whether the `picker` feature is enabled +/// Current: `enabled` +#[cfg(feature = "picker")] +#[allow(unused)] +pub const MINGLING_PICKER: bool = true; /// Whether the `repl` feature is enabled /// Current: `disabled` #[cfg(not(feature = "repl"))] -- cgit