reduce msrv back to 1.85

This commit is contained in:
Skgland
2025-08-18 20:52:15 +02:00
committed by Bennet Bleßmann
parent 6338a40eed
commit 348c5029b3
7 changed files with 207 additions and 47 deletions

View File

@@ -43,6 +43,10 @@ fn find_prolog_files(path_prefix: &str, current_dir: &Path) -> Vec<(String, Path
}
fn main() {
if version_check::is_min_version("1.87.0").unwrap_or(false) {
println!(r#"cargo:rustc-cfg=rust_version="1.87.0""#);
}
let has_rustfmt = Command::new("rustfmt")
.arg("--version")
.stdin(Stdio::inherit())