diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-24 04:45:31 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-24 04:48:04 +0800 |
| commit | 8fa642ab36514b09897b6f202738cff863b350fe (patch) | |
| tree | 4ffefa651396c6e81af6b071b14eece364bdc435 /.cargo | |
| parent | 2b41209f2b76d4067867be466bdcfed478ff3f39 (diff) | |
Rename arguments module to args and update auto-collect config
Diffstat (limited to '.cargo')
| -rw-r--r-- | .cargo/registry.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.cargo/registry.toml b/.cargo/registry.toml index fd12894..3ebfa17 100644 --- a/.cargo/registry.toml +++ b/.cargo/registry.toml @@ -34,20 +34,20 @@ type = "crate::renderers::json_pretty::JVResultPrettyJsonRenderer" ### Auto-Collect ### #################### -[collect.outputs] -path = "src/outputs.rs" +[collect.args] +path = "src/args.rs" -[collect.inputs] -path = "src/inputs.rs" +[collect.cmds] +path = "src/cmds.rs" [collect.collects] path = "src/collects.rs" -[collect.cmds] -path = "src/cmds.rs" +[collect.inputs] +path = "src/inputs.rs" -[collect.arguments] -path = "src/arguments.rs" +[collect.outputs] +path = "src/outputs.rs" [collect.renderers] path = "src/renderers.rs" |
