diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-23 03:01:47 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-23 03:01:47 +0800 |
| commit | 9880a6409e8eed4e1210406603d8aff65fac6a0c (patch) | |
| tree | 8eb6146771fea38f4a5b3e7f7d17e784fd26ce79 /.cargo/registry.toml | |
| parent | 137c41af5336d06351d95a37788401dd093efe19 (diff) | |
Move Registry.toml into .cargo/ subdirectory
Diffstat (limited to '.cargo/registry.toml')
| -rw-r--r-- | .cargo/registry.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.cargo/registry.toml b/.cargo/registry.toml new file mode 100644 index 0000000..f3f6fdd --- /dev/null +++ b/.cargo/registry.toml @@ -0,0 +1,25 @@ +################ +### Commands ### +################ + +[cmd.status] +node = "status" +type = "cmd::cmds::status::JVStatusCommand" + +################# +### Renderers ### +################# + +# Default Renderer +[renderer.default] +name = "default" +type = "Renderer" + +# Json Renderer +[renderer.json] +name = "json" +type = "crate::cmd::renderers::json_renderer::JVResultJsonRenderer" + +[renderer.json_pretty] +name = "json-pretty" +type = "crate::cmd::renderers::json_renderer::JVResultPrettyJsonRenderer" |
