summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-04-13 16:19:10 +0200
committerMatthias Beyer <mail@beyermatthias.de>2018-04-13 16:19:10 +0200
commitaeec10bf769b458e3352003fb0cffe904d61ba91 (patch)
tree644152ae6065b5923638e94a2d90f32c57cc2415
parentb59c234588c2fdd3f8e3d4fb91a145a277db8598 (diff)
Use clap with wrap_help feature
-rw-r--r--bin/core/imag-annotate/Cargo.toml2
-rw-r--r--bin/core/imag-diagnostics/Cargo.toml2
-rw-r--r--bin/core/imag-edit/Cargo.toml2
-rw-r--r--bin/core/imag-gps/Cargo.toml2
-rw-r--r--bin/core/imag-grep/Cargo.toml2
-rw-r--r--bin/core/imag-ids/Cargo.toml2
-rw-r--r--bin/core/imag-init/Cargo.toml2
-rw-r--r--bin/core/imag-link/Cargo.toml2
-rw-r--r--bin/core/imag-mv/Cargo.toml2
-rw-r--r--bin/core/imag-ref/Cargo.toml2
-rw-r--r--bin/core/imag-store/Cargo.toml2
-rw-r--r--bin/core/imag-tag/Cargo.toml2
-rw-r--r--bin/core/imag-view/Cargo.toml2
-rw-r--r--bin/core/imag/Cargo.toml2
-rw-r--r--bin/domain/imag-bookmark/Cargo.toml2
-rw-r--r--bin/domain/imag-contact/Cargo.toml2
-rw-r--r--bin/domain/imag-diary/Cargo.toml2
-rw-r--r--bin/domain/imag-habit/Cargo.toml2
-rw-r--r--bin/domain/imag-log/Cargo.toml2
-rw-r--r--bin/domain/imag-mail/Cargo.toml2
-rw-r--r--bin/domain/imag-notes/Cargo.toml2
-rw-r--r--bin/domain/imag-timetrack/Cargo.toml2
-rw-r--r--bin/domain/imag-todo/Cargo.toml2
-rw-r--r--lib/core/libimagrt/Cargo.toml2
-rw-r--r--lib/entry/libimagentrytag/Cargo.toml2
-rw-r--r--lib/etc/libimaginteraction/Cargo.toml2
-rw-r--r--lib/etc/libimagtimeui/Cargo.toml2
27 files changed, 27 insertions, 27 deletions
diff --git a/bin/core/imag-annotate/Cargo.toml b/bin/core/imag-annotate/Cargo.toml
index 83562018..198cff5a 100644
--- a/bin/core/imag-annotate/Cargo.toml
+++ b/bin/core/imag-annotate/Cargo.toml
@@ -37,5 +37,5 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagut
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag-diagnostics/Cargo.toml b/bin/core/imag-diagnostics/Cargo.toml
index 5997cdef..f017e40b 100644
--- a/bin/core/imag-diagnostics/Cargo.toml
+++ b/bin/core/imag-diagnostics/Cargo.toml
@@ -27,5 +27,5 @@ libimagentrylink = { version = "0.7.0", path = "../../../lib/entry/libimagentryl
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["suggestions", "color"]
+features = ["suggestions", "color", "wrap_help"]
diff --git a/bin/core/imag-edit/Cargo.toml b/bin/core/imag-edit/Cargo.toml
index 3ee9b99d..bd62093e 100644
--- a/bin/core/imag-edit/Cargo.toml
+++ b/bin/core/imag-edit/Cargo.toml
@@ -36,7 +36,7 @@ libimagentryedit = { version = "0.7.0", path = "../../../lib/entry/libimagentrye
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[dev-dependencies.libimagutil]
version = "0.7.0"
diff --git a/bin/core/imag-gps/Cargo.toml b/bin/core/imag-gps/Cargo.toml
index 1d160cdd..bc0697f8 100644
--- a/bin/core/imag-gps/Cargo.toml
+++ b/bin/core/imag-gps/Cargo.toml
@@ -36,7 +36,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[dev-dependencies.libimagutil]
version = "0.7.0"
diff --git a/bin/core/imag-grep/Cargo.toml b/bin/core/imag-grep/Cargo.toml
index 46c0af8c..47bb98c8 100644
--- a/bin/core/imag-grep/Cargo.toml
+++ b/bin/core/imag-grep/Cargo.toml
@@ -32,5 +32,5 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror"
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag-ids/Cargo.toml b/bin/core/imag-ids/Cargo.toml
index 5050a0d4..0e9345cd 100644
--- a/bin/core/imag-ids/Cargo.toml
+++ b/bin/core/imag-ids/Cargo.toml
@@ -29,5 +29,5 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror"
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag-init/Cargo.toml b/bin/core/imag-init/Cargo.toml
index 01778b24..9424adf6 100644
--- a/bin/core/imag-init/Cargo.toml
+++ b/bin/core/imag-init/Cargo.toml
@@ -28,7 +28,7 @@ libimagrt = { version = "0.7.0", path = "../../../lib/core/libimagrt" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[dev-dependencies]
toml = "0.4"
diff --git a/bin/core/imag-link/Cargo.toml b/bin/core/imag-link/Cargo.toml
index 12cb259b..ba7d5afd 100644
--- a/bin/core/imag-link/Cargo.toml
+++ b/bin/core/imag-link/Cargo.toml
@@ -37,7 +37,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[dev-dependencies]
env_logger = "0.5"
diff --git a/bin/core/imag-mv/Cargo.toml b/bin/core/imag-mv/Cargo.toml
index c6ad510e..6057217f 100644
--- a/bin/core/imag-mv/Cargo.toml
+++ b/bin/core/imag-mv/Cargo.toml
@@ -32,5 +32,5 @@ libimagentrylink = { version = "0.7.0", path = "../../../lib/entry/libimagentryl
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag-ref/Cargo.toml b/bin/core/imag-ref/Cargo.toml
index 7d3fdf40..d5d5ff15 100644
--- a/bin/core/imag-ref/Cargo.toml
+++ b/bin/core/imag-ref/Cargo.toml
@@ -34,5 +34,5 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil"
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag-store/Cargo.toml b/bin/core/imag-store/Cargo.toml
index 405d94ba..1ccc88d1 100644
--- a/bin/core/imag-store/Cargo.toml
+++ b/bin/core/imag-store/Cargo.toml
@@ -34,7 +34,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[features]
early-panic = [ "libimagstore/early-panic" ]
diff --git a/bin/core/imag-tag/Cargo.toml b/bin/core/imag-tag/Cargo.toml
index 98b5c99c..1c2c407d 100644
--- a/bin/core/imag-tag/Cargo.toml
+++ b/bin/core/imag-tag/Cargo.toml
@@ -34,7 +34,7 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
[dev-dependencies]
toml-query = "0.6"
diff --git a/bin/core/imag-view/Cargo.toml b/bin/core/imag-view/Cargo.toml
index 70a556d8..686ad569 100644
--- a/bin/core/imag-view/Cargo.toml
+++ b/bin/core/imag-view/Cargo.toml
@@ -36,5 +36,5 @@ libimagentryview = { version = "0.7.0", path = "../../../lib/entry/libimagentryv
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/core/imag/Cargo.toml b/bin/core/imag/Cargo.toml
index 72c4a97c..e0770a6b 100644
--- a/bin/core/imag/Cargo.toml
+++ b/bin/core/imag/Cargo.toml
@@ -34,5 +34,5 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["suggestions", "color"]
+features = ["suggestions", "color", "wrap_help"]
diff --git a/bin/domain/imag-bookmark/Cargo.toml b/bin/domain/imag-bookmark/Cargo.toml
index ba4deb72..4160a7b7 100644
--- a/bin/domain/imag-bookmark/Cargo.toml
+++ b/bin/domain/imag-bookmark/Cargo.toml
@@ -34,5 +34,5 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-contact/Cargo.toml b/bin/domain/imag-contact/Cargo.toml
index d330235e..fe9d4b16 100644
--- a/bin/domain/imag-contact/Cargo.toml
+++ b/bin/domain/imag-contact/Cargo.toml
@@ -48,5 +48,5 @@ features = ["deser"]
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-diary/Cargo.toml b/bin/domain/imag-diary/Cargo.toml
index 48c0ed54..5aa23e3c 100644
--- a/bin/domain/imag-diary/Cargo.toml
+++ b/bin/domain/imag-diary/Cargo.toml
@@ -39,5 +39,5 @@ libimagtimeui = { version = "0.7.0", path = "../../../lib/etc/libimagtimeui
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-habit/Cargo.toml b/bin/domain/imag-habit/Cargo.toml
index 693ec661..9c819248 100644
--- a/bin/domain/imag-habit/Cargo.toml
+++ b/bin/domain/imag-habit/Cargo.toml
@@ -41,5 +41,5 @@ libimaghabit = { version = "0.7.0", path = "../../../lib/domain/libimaghab
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-log/Cargo.toml b/bin/domain/imag-log/Cargo.toml
index aeb4d40d..7acd9468 100644
--- a/bin/domain/imag-log/Cargo.toml
+++ b/bin/domain/imag-log/Cargo.toml
@@ -36,5 +36,5 @@ libimaglog = { version = "0.7.0", path = "../../../lib/domain/libimaglog" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-mail/Cargo.toml b/bin/domain/imag-mail/Cargo.toml
index 30f73abe..2962b89d 100644
--- a/bin/domain/imag-mail/Cargo.toml
+++ b/bin/domain/imag-mail/Cargo.toml
@@ -32,5 +32,5 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-notes/Cargo.toml b/bin/domain/imag-notes/Cargo.toml
index af84c057..22c11d1b 100644
--- a/bin/domain/imag-notes/Cargo.toml
+++ b/bin/domain/imag-notes/Cargo.toml
@@ -35,5 +35,5 @@ libimagstore = { version = "0.7.0", path = "../../../lib/core/libimagstore"
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-timetrack/Cargo.toml b/bin/domain/imag-timetrack/Cargo.toml
index 1adf5223..8bf3c9c3 100644
--- a/bin/domain/imag-timetrack/Cargo.toml
+++ b/bin/domain/imag-timetrack/Cargo.toml
@@ -38,5 +38,5 @@ libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/bin/domain/imag-todo/Cargo.toml b/bin/domain/imag-todo/Cargo.toml
index ac04618f..32d73207 100644
--- a/bin/domain/imag-todo/Cargo.toml
+++ b/bin/domain/imag-todo/Cargo.toml
@@ -34,5 +34,5 @@ libimagtodo = { version = "0.7.0", path = "../../../lib/domain/libimagtodo" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/lib/core/libimagrt/Cargo.toml b/lib/core/libimagrt/Cargo.toml
index 617f7064..74fc964c 100644
--- a/lib/core/libimagrt/Cargo.toml
+++ b/lib/core/libimagrt/Cargo.toml
@@ -39,7 +39,7 @@ libimaginteraction = { version = "0.7.0", path = "../../../lib/etc/libimagintera
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["suggestions", "color"]
+features = ["suggestions", "color", "wrap_help"]
[dependencies.log]
version = "0.4.0-rc.1"
diff --git a/lib/entry/libimagentrytag/Cargo.toml b/lib/entry/libimagentrytag/Cargo.toml
index 09aeccff..f6712957 100644
--- a/lib/entry/libimagentrytag/Cargo.toml
+++ b/lib/entry/libimagentrytag/Cargo.toml
@@ -35,5 +35,5 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/lib/etc/libimaginteraction/Cargo.toml b/lib/etc/libimaginteraction/Cargo.toml
index 48081a51..79f23b64 100644
--- a/lib/etc/libimaginteraction/Cargo.toml
+++ b/lib/etc/libimaginteraction/Cargo.toml
@@ -36,5 +36,5 @@ libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]
diff --git a/lib/etc/libimagtimeui/Cargo.toml b/lib/etc/libimagtimeui/Cargo.toml
index 1e222b42..cb0ab64e 100644
--- a/lib/etc/libimagtimeui/Cargo.toml
+++ b/lib/etc/libimagtimeui/Cargo.toml
@@ -28,5 +28,5 @@ regex = "0.2"
[dependencies.clap]
version = "^2.29"
default-features = false
-features = ["color", "suggestions"]
+features = ["color", "suggestions", "wrap_help"]