Move verbase-trace to a RUSTFLAGS env flag
diff --git a/src/parsers.rs b/src/parsers.rs
index ae7d00f..38c7ab0 100644
--- a/src/parsers.rs
+++ b/src/parsers.rs
@@ -81,7 +81,7 @@
};
}
-#[cfg(all(feature = "verbose-trace", not(feature = "all-features")))]
+#[cfg(synom_verbose_trace)]
#[macro_export]
macro_rules! call {
($i:expr, $fun:expr $(, $args:expr)*) => {{
@@ -128,7 +128,7 @@
/// #
/// # fn main() {}
/// ```
-#[cfg(any(not(feature = "verbose-trace"), feature = "all-features"))]
+#[cfg(not(synom_verbose_trace))]
#[macro_export]
macro_rules! call {
($i:expr, $fun:expr $(, $args:expr)*) => {