chore: update to rust 1.88 (#2815)

* chore: update to rust 1.88

* clippy + fmt

* update ci version

* update flake
This commit is contained in:
Ellie Huxtable
2025-07-22 16:03:20 +02:00
committed by GitHub
parent 875e339189
commit e7819d258a
24 changed files with 83 additions and 86 deletions

View File

@ -55,8 +55,7 @@ impl Database for Postgres {
if pg_major_version < MIN_PG_VERSION {
return Err(DbError::Other(eyre::Report::msg(format!(
"unsupported PostgreSQL version {}, minimum required is {}",
pg_major_version, MIN_PG_VERSION
"unsupported PostgreSQL version {pg_major_version}, minimum required is {MIN_PG_VERSION}"
))));
}