aboutsummaryrefslogtreecommitdiff
path: root/mingling
diff options
context:
space:
mode:
Diffstat (limited to 'mingling')
-rw-r--r--mingling/Cargo.toml5
-rw-r--r--mingling/src/features.rs11
2 files changed, 0 insertions, 16 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index f1439af..7c7993b 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -94,11 +94,6 @@ ron_serde_fmt = ["mingling_core/ron_serde_fmt"]
extras = ["mingling_macros/extras"]
-# - LEGACY -
-# These are old names, will be Breaking Change in the future
-
-extra_macros = ["mingling_macros/extras"]
-
[dependencies]
mingling_core = { workspace = true, optional = true }
mingling_macros = { workspace = true, optional = true }
diff --git a/mingling/src/features.rs b/mingling/src/features.rs
index 777c3fb..8a3ce75 100644
--- a/mingling/src/features.rs
+++ b/mingling/src/features.rs
@@ -108,17 +108,6 @@ pub const MINGLING_DOCS_RS: bool = false;
#[cfg(feature = "docs_rs")]
#[allow(unused)]
pub const MINGLING_DOCS_RS: bool = true;
-/// Whether the `extra_macros` feature is enabled
-/// Current: `disabled`
-#[cfg(not(feature = "extra_macros"))]
-#[allow(unused)]
-pub const MINGLING_EXTRA_MACROS: bool = false;
-
-/// Whether the `extra_macros` feature is enabled
-/// Current: `enabled`
-#[cfg(feature = "extra_macros")]
-#[allow(unused)]
-pub const MINGLING_EXTRA_MACROS: bool = true;
/// Whether the `extras` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "extras"))]