summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-tag
diff options
context:
space:
mode:
Diffstat (limited to 'bin/core/imag-tag')
-rw-r--r--bin/core/imag-tag/Cargo.toml1
-rw-r--r--bin/core/imag-tag/src/main.rs3
2 files changed, 1 insertions, 3 deletions
diff --git a/bin/core/imag-tag/Cargo.toml b/bin/core/imag-tag/Cargo.toml
index 7e6bbecb..8e425299 100644
--- a/bin/core/imag-tag/Cargo.toml
+++ b/bin/core/imag-tag/Cargo.toml
@@ -22,7 +22,6 @@ maintenance = { status = "actively-developed" }
[dependencies]
clap = ">=2.17"
log = "0.3"
-version = "2.0.1"
toml = "0.4"
libimagstore = { version = "0.6.0", path = "../../../lib/core/libimagstore" }
diff --git a/bin/core/imag-tag/src/main.rs b/bin/core/imag-tag/src/main.rs
index 699cc5f8..beceee12 100644
--- a/bin/core/imag-tag/src/main.rs
+++ b/bin/core/imag-tag/src/main.rs
@@ -19,7 +19,6 @@
extern crate clap;
#[macro_use] extern crate log;
-#[macro_use] extern crate version;
#[cfg(test)] extern crate toml;
@@ -59,7 +58,7 @@ use ui::build_ui;
fn main() {
let rt = generate_runtime_setup("imag-store",
- &version!()[..],
+ env!("CARGO_PKG_VERSION"),
"Direct interface to the store. Use with great care!",
build_ui);