aboutsummaryrefslogtreecommitdiff
path: root/examples/example-clap-binding/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-clap-binding/Cargo.toml')
-rw-r--r--examples/example-clap-binding/Cargo.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/example-clap-binding/Cargo.toml b/examples/example-clap-binding/Cargo.toml
new file mode 100644
index 0000000..d261786
--- /dev/null
+++ b/examples/example-clap-binding/Cargo.toml
@@ -0,0 +1,15 @@
+[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"
+# Enable `derive` features
+features = ["derive"]