diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-10 12:18:44 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-08-29 17:54:03 +0200 |
commit | cd5fa90c681c3be7e8835eb4043a55eb5cf01293 (patch) | |
tree | 7d0545f849e8548d95ebfae8cde1584b07713bd6 /Cargo.lock | |
parent | d47af7b17300ad9db05ca787ff2038ab50c8b007 (diff) | |
download | garage-cd5fa90c681c3be7e8835eb4043a55eb5cf01293.tar.gz garage-cd5fa90c681c3be7e8835eb4043a55eb5cf01293.zip |
Configure structopt to report the right version
By default, structopt reports the value provided by
the env var CARGO_PKG_VERSION, feeded by Cargo when reading
Cargo.toml. However for Garage we use a versioning based on git,
so we often report a version that is behind the real version.
In this commit, we create garage_util::version::garage() that
reports the right version and configure all structopt subcommands
to call this function instead of using the env var.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1079,7 +1079,6 @@ dependencies = [ "futures-util", "garage_util 0.7.0", "gethostname", - "git-version", "hex", "hyper", "k8s-openapi", @@ -1177,6 +1176,7 @@ dependencies = [ "chrono", "err-derive 0.3.1", "futures", + "git-version", "hex", "http", "hyper", |