Update Rust to edition 2024
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 15:09:21 +01:00
parent c6e53d5790
commit ca6b5d398b
19 changed files with 28 additions and 25 deletions

View File

@ -3,7 +3,7 @@
use crate::app_config::AppConfig;
use diesel::result::{DatabaseErrorKind, Error};
use diesel::{Connection, PgConnection};
use diesel_migrations::{embed_migrations, EmbeddedMigrations, MigrationHarness};
use diesel_migrations::{EmbeddedMigrations, MigrationHarness, embed_migrations};
use std::cell::RefCell;
const MIGRATIONS: EmbeddedMigrations = embed_migrations!();