azure-sdk-for-rust/sdk/eventhubs/azure_messaging_eventhubs/build.rs

14 строки
358 B
Rust

// Copyright (c) Microsoft Corporation. All Rights reserved
// Licensed under the MIT license.
// cspell: words rustc AZSDK
use rustc_version::version;
fn main() {
let version = match version() {
Ok(version) => version.to_string(),
Err(_) => "unknown".to_owned(),
};
println!("cargo:rustc-env=AZSDK_RUSTC_VERSION={version}");
}