run cargo fix

This commit is contained in:
Andrea Toska 2025-05-12 10:35:17 +02:00
commit 0dd4bfa7de
No known key found for this signature in database
GPG key ID: 5B3C83807CCBE9A2
3 changed files with 0 additions and 6 deletions

View file

@ -1,8 +1,5 @@
use std::env;
use std::fs;
use std::fs::File;
use std::io::Write;
use std::path::Path;
use chrono::{NaiveDate, NaiveDateTime};
use gxhash::{gxhash32, gxhash64};
use minio::s3::builders::{ObjectContent};
@ -23,7 +20,6 @@ use crate::email::send_verification_email;
use rand::Rng;
use mii::{get_image_png, get_image_tga};
use minio::s3::client::Client;
use minio::s3::args::PutObjectArgs;
use std::sync::Arc;
const DATABASE_ERROR: Errors = Errors{

View file

@ -1,7 +1,6 @@
use rocket::{State, post, FromForm, put};
use crate::Pool;
use rocket::form::Form;
use crate::email::send_verification_email;
use crate::error::{Error, Errors};
use chrono::Utc;

View file

@ -1,5 +1,4 @@
use rocket::{post, State};
use rocket::form::Form;
use serde::Deserialize;
use serde::Serialize;
use crate::Pool;