musichoard/build.rs
Wojciech Kozlowski 8ff09e66ba
All checks were successful
Cargo CI / Build and Test (push) Successful in 1m55s
Cargo CI / Lint (push) Successful in 1m5s
Update rust toolchain to 1.80 (#180)
Closes #179

Reviewed-on: #180
2024-08-24 15:10:54 +02:00

7 lines
183 B
Rust

fn main() {
println!("cargo::rustc-check-cfg=cfg(nightly)");
if let Some(true) = version_check::is_feature_flaggable() {
println!("cargo::rustc-cfg=nightly");
}
}