Bump clippy msrv to 1.64

the msrv was bumped in in the Cargo.toml #847 but not in clippy.toml,
clippy was complaining at startup and defaulting to 1.57
This commit is contained in:
Thibaut Lorrain
2023-09-07 14:57:49 +02:00
committed by Emilio Cobos Álvarez
parent 43af1ebe6e
commit 85eb0f4436
6 changed files with 10 additions and 30 deletions
-1
View File
@@ -93,7 +93,6 @@ fn test_project(project_path: &str) {
);
std::fs::remove_dir_all(build_dir).expect("Failed to remove old build directory");
()
}
macro_rules! test_file {
+1 -1
View File
@@ -251,7 +251,7 @@ fn run_compile_test(
);
if generate_depfile {
let depfile = depfile_contents.expect("No depfile generated");
assert!(depfile.len() > 0);
assert!(!depfile.is_empty());
let mut rules = depfile.split(':');
let target = rules.next().expect("No target found");
assert_eq!(target, generated_file.as_os_str().to_str().unwrap());