diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-24 04:45:31 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-24 04:45:31 +0800 |
| commit | 48b89ae0c354b0fcf69ccae8bd1169ab8820b341 (patch) | |
| tree | 47526ce006592e0afa707cf6bd956cdf7dd6b2f8 /.cargo/registry.toml | |
| parent | 2b41209f2b76d4067867be466bdcfed478ff3f39 (diff) | |
Rename arguments module to args and update auto-collect config
Diffstat (limited to '.cargo/registry.toml')
| -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" |
