diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-20 15:35:55 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-20 15:37:46 +0800 |
| commit | 85ab2969934744e8a0346c78daaab7f6d7b85ee6 (patch) | |
| tree | 78c0b39e70e1b3ff54a1e05455571fb68b7fb526 /mingling_cli/Cargo.toml | |
| parent | 62e323c80306d7dca68e47377a0ed6f4e146ba48 (diff) | |
feat(mingling_cli): add scaffold for CLI tool
Add initial project structure for the mingling-cli scaffolding tool,
including Cargo manifest and entry point
Diffstat (limited to 'mingling_cli/Cargo.toml')
| -rw-r--r-- | mingling_cli/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml new file mode 100644 index 0000000..1cc45b6 --- /dev/null +++ b/mingling_cli/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "mingling-cli" +version = "0.3.0" +edition = "2024" +license = "MIT OR Apache-2.0" +repository = "https://github.com/mingling-rs/mingling/tree/main/mingling_cli" +authors = ["Weicao-CatilGrass"] +readme = "README.md" + +description = "Mingling's scaffolding tool for generating, analyzing, and modifying Mingling projects" +keywords = ["cli", "cli-framework", "command-line", "tools"] +categories = ["command-line-interface"] + +[dependencies.mingling] +path = "../mingling" +features = [ + "picker", + "pathf", + "dispatch_tree", + "extra_macros" +] + +[dependencies] + +[workspace] |
