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 /src/rpc/Cargo.toml | |
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 'src/rpc/Cargo.toml')
-rw-r--r-- | src/rpc/Cargo.toml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml index 73328993..80a1975c 100644 --- a/src/rpc/Cargo.toml +++ b/src/rpc/Cargo.toml @@ -19,7 +19,6 @@ garage_util = { version = "0.7.0", path = "../util" } arc-swap = "1.0" bytes = "1.0" gethostname = "0.2" -git-version = "0.3.4" hex = "0.4" tracing = "0.1.30" rand = "0.8" |