diff options
Diffstat (limited to 'mingling_cli/Cargo.toml')
| -rw-r--r-- | mingling_cli/Cargo.toml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml index 1cc45b6..93021f0 100644 --- a/mingling_cli/Cargo.toml +++ b/mingling_cli/Cargo.toml @@ -11,15 +11,29 @@ description = "Mingling's scaffolding tool for generating, analyzing, and modify keywords = ["cli", "cli-framework", "command-line", "tools"] categories = ["command-line-interface"] +[[bin]] +name = "mling" +path = "src/main.rs" + [dependencies.mingling] path = "../mingling" features = [ "picker", "pathf", - "dispatch_tree", - "extra_macros" + "extra_macros", + "structural_renderer" +] + +[build-dependencies.mingling] +path = "../mingling" +features = [ + "builds", + "pathf", ] [dependencies] +cargo_metadata = "0.23.1" +serde = { version = "1.0.229", features = ["derive"] } +serde_json = "1.0.151" [workspace] |
