From 2abc5acd25756f3ef6a6ad34f8777ffe241e750d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 27 Jan 2026 06:16:58 +0800 Subject: Reorganize command modules under a unified cmds directory --- .cargo/registry.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to '.cargo') diff --git a/.cargo/registry.toml b/.cargo/registry.toml index 3ebfa17..c1a712d 100644 --- a/.cargo/registry.toml +++ b/.cargo/registry.toml @@ -24,30 +24,30 @@ type = "Renderer" # Json Renderer [renderer.json] name = "json" -type = "crate::renderers::json::JVResultJsonRenderer" +type = "crate::cmds::renderer::json::JVResultJsonRenderer" [renderer.json_pretty] name = "json-pretty" -type = "crate::renderers::json_pretty::JVResultPrettyJsonRenderer" +type = "crate::cmds::renderer::json_pretty::JVResultPrettyJsonRenderer" #################### ### Auto-Collect ### #################### [collect.args] -path = "src/args.rs" +path = "src/cmds/arg.rs" [collect.cmds] -path = "src/cmds.rs" +path = "src/cmds/cmd.rs" [collect.collects] -path = "src/collects.rs" +path = "src/cmds/collect.rs" [collect.inputs] -path = "src/inputs.rs" +path = "src/cmds/in.rs" [collect.outputs] -path = "src/outputs.rs" +path = "src/cmds/out.rs" [collect.renderers] -path = "src/renderers.rs" +path = "src/cmds/renderer.rs" -- cgit