diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-23 05:01:59 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-23 05:01:59 +0800 |
| commit | 0a150104ea4ff39986a65216386423603d5e3119 (patch) | |
| tree | 31115dd06d67027067942b76946949ecd6ba059e /.cargo | |
| parent | 626536ce51975b051fea087620bc1eb7f6bc69d3 (diff) | |
Add auto-collect configuration and generation
Diffstat (limited to '.cargo')
| -rw-r--r-- | .cargo/registry.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.cargo/registry.toml b/.cargo/registry.toml index 6ae66bb..060ca0a 100644 --- a/.cargo/registry.toml +++ b/.cargo/registry.toml @@ -23,3 +23,22 @@ type = "crate::renderers::json::JVResultJsonRenderer" [renderer.json_pretty] name = "json-pretty" type = "crate::renderers::json_pretty::JVResultPrettyJsonRenderer" + +#################### +### Auto-Collect ### +#################### + +[collect.outputs] +path = "src/outputs.rs" + +[collect.inputs] +path = "src/inputs.rs" + +[collect.cmds] +path = "src/cmds.rs" + +[collect.arguments] +path = "src/arguments.rs" + +[collect.renderers] +path = "src/renderers.rs" |
