diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-28 22:49:24 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-28 22:49:24 +0800 |
| commit | 1cb8efb80e7d05ab14d5ed31227aa20373977fa2 (patch) | |
| tree | 8a72d47e456b7a959162d7668ed942711e37996e /examples/example-clap-binding/Cargo.toml | |
| parent | 30369cc87d44c646e9541174fbe7c1fd36cee223 (diff) | |
Add example for clap binding integration
Diffstat (limited to 'examples/example-clap-binding/Cargo.toml')
| -rw-r--r-- | examples/example-clap-binding/Cargo.toml | 15 |
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"] |
