git_describe_build_tool 1.0.2

Retrieve Git tag, store as environment variable at build time
Documentation
  • Coverage
  • 83.33%
    5 out of 6 items documented1 out of 4 items with examples
  • Size
  • Source code size: 5.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 210.66 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • SnSDev/git_describe_build_tool
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • emeraldinspirations

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