From 34c4c66c1d336469e71fad8cff4828cf5d2bdafb Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 20 Jul 2026 04:57:57 +0800 Subject: feat(core)!: remove `to_chain` and `to_render` from `Grouped` trait Move routing methods exclusively to the `Routable` trait and update all macro-generated code to reference `Routable` instead of `Grouped` --- mling/src/proj_mgr/show_binaries.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mling/src/proj_mgr/show_binaries.rs') diff --git a/mling/src/proj_mgr/show_binaries.rs b/mling/src/proj_mgr/show_binaries.rs index 4fb5c28..b08c1c3 100644 --- a/mling/src/proj_mgr/show_binaries.rs +++ b/mling/src/proj_mgr/show_binaries.rs @@ -2,7 +2,7 @@ use std::path::PathBuf; use colored::Colorize; use mingling::{ - Grouped, RenderResult, + Grouped, RenderResult, Routable, macros::{chain, pack, renderer}, }; use serde::Serialize; -- cgit