aboutsummaryrefslogtreecommitdiff
path: root/mingling
diff options
context:
space:
mode:
Diffstat (limited to 'mingling')
-rw-r--r--mingling/src/features.rs11
1 files changed, 11 insertions, 0 deletions
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"))]