forked from Deuxfleurs/garage
8 lines
231 B
Rust
8 lines
231 B
Rust
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}");
|
|
}
|