diff options
author | Alex <alex@adnab.me> | 2023-03-13 15:46:48 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-03-13 15:46:48 +0000 |
commit | 7fcc153e7cfbae61626ca288634a0f4fb4c4b709 (patch) | |
tree | aa39b41d63358277d61f2cb92ef9565a97c1c901 /src/util/build.rs | |
parent | dc6be3983300ee3ee10f601cfc04a06563d86f48 (diff) | |
parent | f37ec584b6009b16d1c7f06918889954b22f5afb (diff) | |
download | garage-7fcc153e7cfbae61626ca288634a0f4fb4c4b709.tar.gz garage-7fcc153e7cfbae61626ca288634a0f4fb4c4b709.zip |
Merge pull request 'rpc/system_metrics.rs: Added rustversion label to garage_build_info metric.' (#524) from jpds/garage:rustversion-label into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/524
Diffstat (limited to 'src/util/build.rs')
-rw-r--r-- | src/util/build.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/build.rs b/src/util/build.rs new file mode 100644 index 00000000..a4e955b8 --- /dev/null +++ b/src/util/build.rs @@ -0,0 +1,8 @@ +use rustc_version::version; + +fn main() { + // Acquire the version of Rust used to compile, this is added as a label to + // the garage_build_info metric. + let v = version().unwrap(); + println!("cargo:rustc-env=RUSTC_VERSION={v}"); +} |