diff options
Diffstat (limited to 'mling/res')
| -rw-r--r-- | mling/res/CHECKLIST.md | 18 | ||||
| -rw-r--r-- | mling/res/template_0.2/command/Cargo.toml | 0 | ||||
| -rw-r--r-- | mling/res/template_0.2/command/src/main.rs | 1 | ||||
| -rw-r--r-- | mling/res/template_0.2/flat/Cargo.toml | 0 | ||||
| -rw-r--r-- | mling/res/template_0.2/flat/src/main.rs | 0 | ||||
| -rw-r--r-- | mling/res/template_0.2/modularity/Cargo.toml | 0 | ||||
| -rw-r--r-- | mling/res/template_0.2/modularity/src/main.rs | 0 |
7 files changed, 15 insertions, 4 deletions
diff --git a/mling/res/CHECKLIST.md b/mling/res/CHECKLIST.md index 84ca48b..bc7b8bc 100644 --- a/mling/res/CHECKLIST.md +++ b/mling/res/CHECKLIST.md @@ -2,7 +2,7 @@ > > You are using `mling` to create your `mingling` project. Before proceeding, please fill in your project information. -## Question 1: What is your project name? +## Question 1: Fill in your project information Use `snake-case` style to fill in the project name. It will serve as your `crate` name: @@ -10,6 +10,12 @@ Use `snake-case` style to fill in the project name. It will serve as your `crate my-cli ``` +Describe your `program` in one sentence: + +```description +This is a command-line program +``` + ## Question 2: Which Mingling version do you need? > [!TIP] @@ -59,7 +65,7 @@ my-cli ├─ commands/ # Organizes subcommands by hierarchy │ ├── remote/add.rs # "remote add" │ ├── remote/rm.rs # "remote rm" -│ ├── remote.rs # Not a command, +│ ├── remote.rs # Not a command, │ │ but a local implementation for │ │ the remote series of commands │ ├── foo.rs # "foo" @@ -76,15 +82,19 @@ my-cli > > All of the following options are **OPTIONAL** +**Pre:** + +- [x] `exec:git_init` Initialize this project as a git repository (requires `git` to be installed) + **Features:** +- [x] `feat:extra_macros` Extra macro support +- [x] `feat:dispatch_tree` Compile-time dispatch tree (solidify all commands) - [ ] `feat:structural_renderer` Structural renderer (JSON/YAML) for feature output - [ ] `feat:comp` Dynamic completion system - [ ] `feat:clap` Clap support - [ ] `feat:parser` Mingling Picker parser support - [ ] `feat:async` Async support -- [ ] `feat:dispatch_tree` Compile-time dispatch tree (solidify all commands) -- [ ] `feat:extra_macros` Extra macro support **Implementations:** diff --git a/mling/res/template_0.2/command/Cargo.toml b/mling/res/template_0.2/command/Cargo.toml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mling/res/template_0.2/command/Cargo.toml diff --git a/mling/res/template_0.2/command/src/main.rs b/mling/res/template_0.2/command/src/main.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/mling/res/template_0.2/command/src/main.rs @@ -0,0 +1 @@ + diff --git a/mling/res/template_0.2/flat/Cargo.toml b/mling/res/template_0.2/flat/Cargo.toml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mling/res/template_0.2/flat/Cargo.toml diff --git a/mling/res/template_0.2/flat/src/main.rs b/mling/res/template_0.2/flat/src/main.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mling/res/template_0.2/flat/src/main.rs diff --git a/mling/res/template_0.2/modularity/Cargo.toml b/mling/res/template_0.2/modularity/Cargo.toml new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mling/res/template_0.2/modularity/Cargo.toml diff --git a/mling/res/template_0.2/modularity/src/main.rs b/mling/res/template_0.2/modularity/src/main.rs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/mling/res/template_0.2/modularity/src/main.rs |
