diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-17 19:26:51 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-17 19:26:51 +0800 |
| commit | 559ad2e9ddec8c74ce2e922224392365101a7396 (patch) | |
| tree | acf225b9ef6292c2598c1ce34cb64a9c579768cd /mingling | |
| parent | 89bf57f33a9f0f5a96fc50e272c83d926fa35c4a (diff) | |
chore!: remove legacy extra_macros feature alias
Diffstat (limited to 'mingling')
| -rw-r--r-- | mingling/Cargo.toml | 5 | ||||
| -rw-r--r-- | mingling/src/features.rs | 11 |
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"))] |
