aboutsummaryrefslogtreecommitdiff
path: root/examples/example-clap-binding/Cargo.toml
blob: a019442391add705432842157f6c3734bf2c3ea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "example-clap-binding"
version = "0.1.0"
edition = "2024"

[dependencies.mingling]
path = "../../mingling"
# Enable `clap` features
features = ["clap"]

# Import `clap` to your project
[dependencies.clap]
version = "4.6.1"
features = [
    # Enable `derive` feature to support `clap::Parser`
    "derive",
    # Enable `color` feature to support ANSI colors
    "color",
]