Crate vergen_git2
source ·Expand description
§vergen-git2 - Emit cargo instructions from a build script
vergen-git2 uses the git2 library to generate the git instructions.
vergen-git2, when used in conjunction with cargo build scripts can emit the following:
- Will emit
cargo:rustc-env=VAR=VALUEfor each feature you have enabled. These can be referenced with the env! or option_env! macro in your code. - Can emit
cargo:warningoutputs if thefail_on_errorfeature is not enabled and the requested variable is defaulted through error or theidempotentflag. - Will emit
cargo:rerun-if-changed=.git/HEADif git instructions are emitted. This is done to ensure any git instructions are regenerated when commits are made. - Will emit
cargo:rerun-if-changed=.git/<path_to_ref>if git instructions are emitted. This is done to ensure any git instructions are regenerated when commits are made. - Will emit
cargo:rerun-if-changed=build.rsto rerun instruction emission if thebuild.rsfile changed. - Will emit
cargo:rerun-if-env-changed=VERGEN_IDEMPOTENTto rerun instruction emission if theVERGEN_IDEMPOTENTenvironment variable has changed. - Will emit
cargo:rerun-if-env-changed=SOURCE_DATE_EPOCHto rerun instruction emission if theSOURCE_DATE_EPOCHenvironment variable has changed.
§Usage
- Ensure you have build scripts enabled via the
buildconfiguration in yourCargo.toml
[package]
#..
build = "build.rs"
- Add
vergen-git2as a build dependency inCargo.toml, specifying the features you wish to enable.
[dependencies]
#..
[build-dependencies]
# All features enabled
vergen-git2 = { version = "1.0.0-beta.0", features = ["build", "cargo", "rustc", "si"] }
# or
vergen-git2 = { version = "1.0.0-beta.0", features = ["build"] }
# if you wish to disable certain features
- Create a
build.rsfile that usesvergen-git2to emit cargo instructions. Configuration starts withEmitter. Eventually you will callemitto output the cargo instructions. See theemitdocumentation for more robust examples.
§Generate all output
// NOTE: This will output everything, and requires all features enabled.
// NOTE: See the specific builder documentation for configuration options.
let build = BuildBuilder::all_build()?;
let cargo = CargoBuilder::all_cargo()?;
let git2 = Git2Builder::all_git()?;
let rustc = RustcBuilder::all_rustc()?;
let si = SysinfoBuilder::all_sysinfo()?;
Emitter::default()
.add_instructions(&build)?
.add_instructions(&cargo)?
.add_instructions(&git2)?
.add_instructions(&rustc)?
.add_instructions(&si)?
.emit()?;§Sample Output
Date ( build): 2024-01-28
Timestamp ( build): 2024-01-28T18:07:13.256193157Z
Debug ( cargo): true
Dependencies ( cargo): anyhow 1.0.79,vergen 8.3.1,vergen-pretty 0.3.1
Features ( cargo):
Opt Level ( cargo): 0
Target Triple ( cargo): x86_64-unknown-linux-gnu
Branch ( git): master
Commit Author Email ( git): a_serious@vergen.com
Commit Author Name ( git): Jason Ozias
Commit Count ( git): 39
Commit Date ( git): 2024-01-27
Commit Message ( git): depsup
Commit Timestamp ( git): 2024-01-27T15:13:49.000000000Z
Describe ( git): 0.1.0-beta.1-10-gc139056
Dirty ( git): false
SHA ( git): c1390562822a2f89ded3430c07cba03bf1651458
Channel ( rustc): nightly
Commit Date ( rustc): 2024-01-27
Commit Hash ( rustc): 6b4f1c5e782c72a047a23e922decd33e7d462345
Host Triple ( rustc): x86_64-unknown-linux-gnu
LLVM Version ( rustc): 17.0
Semver ( rustc): 1.77.0-nightly
CPU Brand (sysinfo): AMD Ryzen Threadripper 1900X 8-Core Processor
CPU Core Count (sysinfo): 8
CPU Frequency (sysinfo): 3792
CPU Name (sysinfo): cpu0,cpu1,cpu2,cpu3,cpu4,cpu5,cpu6,cpu7
CPU Vendor (sysinfo): AuthenticAMD
Name (sysinfo): Arch Linux
OS Version (sysinfo): Linux Arch Linux
Total Memory (sysinfo): 31 GiB
User (sysinfo): jozias
§Generate specific output
// NOTE: This will output only the instructions specified.
// NOTE: See the specific builder documentation for configuration options.
let build = BuildBuilder::default().build_timestamp(true).build()?;
let cargo = CargoBuilder::default().opt_level(true).build()?;
let git2 = Git2Builder::default().commit_timestamp(true).build()?;
let rustc = RustcBuilder::default().semver(true).build()?;
let si = SysinfoBuilder::default().cpu_core_count(true).build()?;
Emitter::default()
.add_instructions(&build)?
.add_instructions(&cargo)?
.add_instructions(&git2)?
.add_instructions(&rustc)?
.add_instructions(&si)?
.emit()?;§Sample Output
Timestamp ( build): 2024-01-28T18:07:13.256193157Z
Opt Level ( cargo): 0
Commit Timestamp ( git): 2024-01-27T15:13:49.000000000Z
Semver ( rustc): 1.77.0-nightly
CPU Core Count (sysinfo): 8
- Use the
env!oroption_env!macro in your code to read the environment variables.
if let Some(timestamp) = option_env!("VERGEN_BUILD_TIMESTAMP") {
println!("Build Timestamp: {timestamp}");
}
if let Some(describe) = option_env!("VERGEN_GIT_DESCRIBE") {
println!("git describe: {describe}");
}§Features
vergen-git2 has four main feature toggles allowing you to customize your output. No features are enabled by default.
You must specifically enable the features you wish to use.
| Feature | Enables |
|---|---|
| build | VERGEN_BUILD_* instructions |
| cargo | VERGEN_CARGO_* instructions |
| rustc | VERGEN_RUSTC_* instructions |
| si | VERGEN_SYSINFO_* instructions |
§Environment Variables
vergen-git2 currently recognizes the following environment variables
| Variable | Functionality |
|---|---|
VERGEN_IDEMPOTENT | If this environment variable is set vergen will use the idempotent output feature regardless of the configuration set in build.rs. This exists mainly to allow package maintainers to force idempotent output to generate deterministic binary output. |
SOURCE_DATE_EPOCH | If this environment variable is set vergen will use the value (unix time since epoch) as the basis for a time based instructions. This can help emit deterministic instructions. |
VERGEN_BUILD_* | If this environment variable is set vergen will use the value you specify for the output rather than generating it. |
VERGEN_CARGO_* | If this environment variable is set vergen will use the value you specify for the output rather than generating it. |
VERGEN_GIT_* | If this environment variable is set vergen will use the value you specify for the output rather than generating it. |
VERGEN_RUSTC_* | If this environment variable is set vergen will use the value you specify for the output rather than generating it. |
VERGEN_SYSINFO_* | If this environment variable is set vergen will use the value you specify for the output rather than generating it. |
Structs§
- BuildBuilder
buildBuilder forBuild. - CargoBuilder
cargoBuilder forCargo. - Used to determine what you want to refresh specifically on the
Cputype. - The default configuration to use when an issue has occured generating instructions
- The
Emitterwill emit cargo instructions (i.e. cargo:rustc-env=NAME=VALUE) base on the configuration you enable. - The
VERGEN_GIT_*configuration features - Builder for
Git2. - Used to determine which memory you want to refresh specifically.
- Used to determine what you want to refresh specifically on the
Processtype. - Used to determine what you want to refresh specifically on the [
System][crate::System] type. - RustcBuilder
rustcBuilder forRustc. - Builder for
Sysinfo.
Enums§
- DependencyKind
cargoDependencies can come in three kinds
Traits§
- This trait should be implemented to allow the
vergenemitter to properly emit your custom instructions.
Type Aliases§
- The vector of strings used to emit
cargo:rerun-if-changed=VALUEcargo instructions - The vector of strings used to emit
cargo:warning=VALUEcargo instructions