mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 03:03:34 +00:00
9 lines
200 B
Rust
9 lines
200 B
Rust
extern crate rustc_version;
|
|
use rustc_version::{version, Version};
|
|
|
|
fn main() {
|
|
if version().unwrap() >= Version::parse("1.26.0").unwrap() {
|
|
println!("cargo:rustc-cfg=rust_1_26");
|
|
}
|
|
}
|