aboutsummaryrefslogtreecommitdiff
path: root/examples/example-command-macro/Cargo.toml
blob: b73c2c6052accd7831c6f78c619e58d2572e2287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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]