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_macros/src/attr.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mingling_macros/src/attr.rs') diff --git a/mingling_macros/src/attr.rs b/mingling_macros/src/attr.rs index 8c17878..54fe2f1 100644 --- a/mingling_macros/src/attr.rs +++ b/mingling_macros/src/attr.rs @@ -1,5 +1,5 @@ pub(crate) mod chain; -#[cfg(feature = "extra_macros")] +#[cfg(feature = "extras")] pub(crate) mod command; #[cfg(feature = "comp")] pub(crate) mod completion; @@ -7,6 +7,6 @@ pub(crate) mod completion; pub(crate) mod dispatcher_clap; pub(crate) mod help; pub(crate) mod mlint; -#[cfg(feature = "extra_macros")] +#[cfg(feature = "extras")] pub(crate) mod program_setup; pub(crate) mod renderer; -- cgit