aboutsummaryrefslogtreecommitdiff
path: root/mingling/src
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/src')
-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 8f147fb..4d0c50b 100644
--- a/mingling/src/features.rs
+++ b/mingling/src/features.rs
@@ -130,6 +130,17 @@ pub const MINGLING_PARSER: bool = false;
#[cfg(feature = "parser")]
#[allow(unused)]
pub const MINGLING_PARSER: bool = true;
+/// Whether the `pathf` feature is enabled
+/// Current: `disabled`
+#[cfg(not(feature = "pathf"))]
+#[allow(unused)]
+pub const MINGLING_PATHF: bool = false;
+
+/// Whether the `pathf` feature is enabled
+/// Current: `enabled`
+#[cfg(feature = "pathf")]
+#[allow(unused)]
+pub const MINGLING_PATHF: bool = true;
/// Whether the `repl` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "repl"))]