build: bump MSRV to 1.76.0 (#5586)

This commit is contained in:
Sanchith Hegde
2024-08-12 15:30:05 +05:30
committed by GitHub
parent 7718800e1f
commit 59b36a054c
90 changed files with 255 additions and 260 deletions

View File

@ -1,3 +0,0 @@
fn main() {
println!("Hello world");
}

View File

@ -744,7 +744,7 @@ where
query.push_str(format!(") _ WHERE top_n <= {}", top_n.count).as_str());
}
println!("{}", query);
logger::debug!(%query);
Ok(query)
}
@ -762,7 +762,7 @@ where
.build_query()
.change_context(QueryBuildingError::SqlSerializeError)
.attach_printable("Failed to execute query")?;
logger::debug!(?query);
Ok(store.load_results(query.as_str()).await)
}
}