diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-24 03:10:41 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-24 03:10:41 +0800 |
| commit | 49b9037168fb5b6c8deb7ab06abbfd6f54ebc798 (patch) | |
| tree | 0f5b7c6ce67f2561b2e00da4331df09f476345d4 /.cargo/registry.toml | |
| parent | f9fa7d65d775959efbc9609ccafd1fdce76129e4 (diff) | |
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
Diffstat (limited to '.cargo/registry.toml')
| -rw-r--r-- | .cargo/registry.toml | 3 |
1 files changed, 3 insertions, 0 deletions
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" |
