diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-28 20:49:06 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-28 20:49:06 +0800 |
| commit | 8e7974651069c424b4386011f66adec291dc5b97 (patch) | |
| tree | c8debe5dcda253513370644ae04c71e6af3d5d4f /examples/example-command-macro/Cargo.toml | |
| parent | 16999dd66dc6162184790ef5480d483d0fb81f4a (diff) | |
feat(example): add command macro example
Diffstat (limited to 'examples/example-command-macro/Cargo.toml')
| -rw-r--r-- | examples/example-command-macro/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/example-command-macro/Cargo.toml b/examples/example-command-macro/Cargo.toml new file mode 100644 index 0000000..b73c2c6 --- /dev/null +++ b/examples/example-command-macro/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "example-command-macro" +version = "0.1.0" +edition = "2024" + +[dependencies.mingling] +path = "../../mingling" +features = [ + # Use `extra_macros` to introduce the `#[command]` macro + "extra_macros", + + # Use `picker` to parse arguments + "picker", +] + +[workspace] |
