From 49b9037168fb5b6c8deb7ab06abbfd6f54ebc798 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 24 Jan 2026 03:10:41 +0800 Subject: Split prepare phase into prepare and collect - Prepare now handles argument-to-input conversion only - Collect handles resource gathering and data collection - Status command updated to use new two-phase structure - Command system trait modified to support separate phases --- .cargo/registry.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.cargo') diff --git a/.cargo/registry.toml b/.cargo/registry.toml index f581074..fd12894 100644 --- a/.cargo/registry.toml +++ b/.cargo/registry.toml @@ -40,6 +40,9 @@ path = "src/outputs.rs" [collect.inputs] path = "src/inputs.rs" +[collect.collects] +path = "src/collects.rs" + [collect.cmds] path = "src/cmds.rs" -- cgit