#git #build #tags #env-var #build-tool #build-time #variables

build git_describe_build_tool

Retrieve Git tag, store as environment variable at build time

2 stable releases

1.0.2 May 15, 2022

#454 in Build Utils

Download history 56/week @ 2023-11-20 218/week @ 2023-11-27 232/week @ 2023-12-04 333/week @ 2023-12-11 201/week @ 2023-12-18 75/week @ 2024-01-01 47/week @ 2024-01-08 54/week @ 2024-01-15 116/week @ 2024-01-22 64/week @ 2024-01-29 102/week @ 2024-02-05 113/week @ 2024-02-12 57/week @ 2024-02-19 125/week @ 2024-02-26 135/week @ 2024-03-04

430 downloads per month

MIT license

5KB

git_describe_build_tool

Retrieve Git tag, store as environment variable at build time

The command git describe --tags

... finds the most recent tag that is reachable from a commit. If the tag points to the commit, then only the tag is shown. Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object and the abbreviated object name of the most recent commit. The result is a "human-readable" object name which can also be used to identify the commit to other git commands ...

-- Git Manual

Example

To use, simply add as a build dependency to your cargo.toml

[package]
build = "build.rs"

[build-dependencies]
git_describe_build_tool = "~1.0.0"

Then, add build.rs

use git_describe_build_tool::prelude::*;

fn main() {
    git_build_script();
}

Then, in your code, whenever you want to reference the current version use the env! macro

pub const GIT_COMMIT_DESCRIBE: &str = env!("GIT_COMMIT_DESCRIBE");

assert_eq! {
    "0.11.0-51-g4446464",
    GIT_COMMIT_DESCRIBE
}

License: MIT

No runtime deps