summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2018-07-09 18:56:19 +0300
committerYuval Adam <_@yuv.al>2018-07-09 18:56:19 +0300
commit070801f2ea08e83437d2a50b472a56725deeb947 (patch)
treee48866e4be495019fd28afc5281e9342150fa33b
parent1f9af4957343741e1181e2ea3a690dff9d40ed6b (diff)
Use descriptin from env
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b5ea027..872a1f7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -14,7 +14,7 @@ fn main() {
let app = App::new(env!("CARGO_PKG_NAME"))
.version(env!("CARGO_PKG_VERSION"))
.author("Yuval Adam")
- .about("A simple UPnP/DLNA casting player")
+ .about(env!("CARGO_PKG_DESCRIPTION"))
.arg(Arg::with_name("device")
.short("d")
.long("device")