summaryrefslogtreecommitdiff
path: root/.cargo/registry.toml
blob: 060ca0a729a8f7d59482772259e69d42cc642807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
################
### Commands ###
################

[cmd.status]
node = "status"
type = "cmds::status::JVStatusCommand"

#################
### Renderers ###
#################

# Default Renderer
[renderer.default]
name = "default"
type = "Renderer"

# Json Renderer
[renderer.json]
name = "json"
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"