Update dependency filesize to v10.1.1 #116

Merged
pierre merged 3 commits from renovate/filesize-10.x-lockfile into master 2024-03-22 10:38:14 +00:00
Showing only changes of commit de69009174 - Show all commits

View File

@ -5,7 +5,7 @@ use diesel::result::{DatabaseErrorKind, Error};
use diesel::{Connection, PgConnection}; use diesel::{Connection, PgConnection};
use std::cell::RefCell; use std::cell::RefCell;
thread_local! { thread_local! {
static POSTGRES_CONNECTION: RefCell<Option<PgConnection>> = RefCell::new(None); static POSTGRES_CONNECTION: RefCell<Option<PgConnection>> = const { RefCell::new(None) };
} }
/// Execute a request on the database /// Execute a request on the database