From 0f9ca0745e3e80c751404f45cb2b97d4d14c97d3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 1 Aug 2026 22:42:41 +0800 Subject: refactor!: rename `extra_macros` feature to `extras` Update all references across docs, examples, and configuration files to use the shorter `extras` feature name. --- mingling/Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'mingling/Cargo.toml') diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index 9bf82a7..6f1cc16 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -33,7 +33,7 @@ features = [ "parser", "picker", "clap", - "extra_macros", + "extras", ] [features] @@ -88,13 +88,15 @@ yaml_serde_fmt = ["mingling_core/yaml_serde_fmt"] toml_serde_fmt = ["mingling_core/toml_serde_fmt"] ron_serde_fmt = ["mingling_core/ron_serde_fmt"] -extra_macros = ["mingling_macros/extra_macros"] +extras = ["mingling_macros/extras"] # Section only shown in docs.rs docs_rs = [] -# This is an old name, will be Breaking Change in the future +# These are old names, will be Breaking Change in the future + builds = ["mingling_core/build"] +extra_macros = ["mingling_macros/extras"] [dependencies] mingling_core = { workspace = true, optional = true } -- cgit