From 0617ce6a527567f4545558fda632dd8d7e06606d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 29 May 2026 20:56:19 +0800 Subject: Add auto-generated feature flags module and tooling --- mingling/src/features.rs.tmpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mingling/src/features.rs.tmpl (limited to 'mingling/src/features.rs.tmpl') diff --git a/mingling/src/features.rs.tmpl b/mingling/src/features.rs.tmpl new file mode 100644 index 0000000..3447041 --- /dev/null +++ b/mingling/src/features.rs.tmpl @@ -0,0 +1,15 @@ +>>>>>>>>>> features + +@@@ >>> features +/// Whether the `<<>>` feature is enabled +/// Current: `disabled` +#[cfg(not(feature = "<<>>"))] +#[allow(unused)] +pub const MINGLING_<<>>: bool = false; + +/// Whether the `<<>>` feature is enabled +/// Current: `enabled` +#[cfg(feature = "<<>>")] +#[allow(unused)] +pub const MINGLING_<<>>: bool = true; +@@@ <<< -- cgit