From d5e2b09ad25d4e7e1ab88fa1e15bb33a11bea280 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 17 Jul 2023 16:29:15 -0700 Subject: [PATCH] Enable clap derive This makes the git-pre-commit-hook run time increase from 23s to 29s. :( --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1b8b427..3481f17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,5 +9,5 @@ repository = "https://git.scottworley.com/pluta-lesnura" [dependencies] -clap = "4.3.14" +clap = { version = "4.3.14", features = ["derive"] } rand = "0.8.5" -- 2.44.1