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.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/example-clap-binding/Cargo.toml b/examples/example-clap-binding/Cargo.toml
index d261786..a019442 100644
--- a/examples/example-clap-binding/Cargo.toml
+++ b/examples/example-clap-binding/Cargo.toml
@@ -11,5 +11,9 @@ features = ["clap"]
# Import `clap` to your project
[dependencies.clap]
version = "4.6.1"
-# Enable `derive` features
-features = ["derive"]
+features = [
+ # Enable `derive` feature to support `clap::Parser`
+ "derive",
+ # Enable `color` feature to support ANSI colors
+ "color",
+]