aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-12-23 19:38:33 +0000
committerdiogo464 <[email protected]>2021-12-23 19:38:33 +0000
commitef0889ff3f372b2a9e7d819502d6da964ead5d99 (patch)
tree7cbef191a6535c97593b9798269bd1fbec311341 /dotup_cli
parent8b55e5482f6b7d325980b41edbd03d6e42c183c1 (diff)
Added "derive" feature to clap
Diffstat (limited to 'dotup_cli')
-rw-r--r--dotup_cli/Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml
index d351336..f80b763 100644
--- a/dotup_cli/Cargo.toml
+++ b/dotup_cli/Cargo.toml
@@ -10,9 +10,12 @@ doc = false
10 10
11[dependencies] 11[dependencies]
12anyhow = "1.0" 12anyhow = "1.0"
13clap = "3.0.0-rc.7"
14log = "0.4" 13log = "0.4"
15 14
15[dependencies.clap]
16features = ["derive"]
17version = "3.0.0-rc.7"
18
16[dependencies.dotup] 19[dependencies.dotup]
17path = "../dotup" 20path = "../dotup"
18 21