aboutsummaryrefslogtreecommitdiff
path: root/examples/example-command-macro/Cargo.toml
blob: f0596a7d2db78377e8138a5dde77f57620805d48 (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 `extras` to introduce the `#[command]` macro
    "extras",

    # Use `picker` to parse arguments
    "picker",
]

[workspace]