From 74d55c43fdf562fb8b937cb6171e4437d2f8d002 Mon Sep 17 00:00:00 2001 From: arrelin Date: Thu, 11 Dec 2025 13:29:45 +0300 Subject: [PATCH] deleted unused import --- backend/Cargo.toml | 1 - backend/src/lib.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 6de78d4..acb85a8 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -18,7 +18,6 @@ utoipa-swagger-ui = { version = "8.0", features = ["axum"] } axum-login = "0.15" tower-sessions = "0.12" tower-sessions-sqlx-store = { version = "0.12", features = ["postgres"] } -sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } argon2 = "0.5" async-trait = "0.1" thiserror = "2.0" diff --git a/backend/src/lib.rs b/backend/src/lib.rs index 72eed44..86c93a7 100644 --- a/backend/src/lib.rs +++ b/backend/src/lib.rs @@ -2,7 +2,7 @@ use axum::{ routing::{get, post, put, delete}, Router, middleware as axum_middleware, }; -use sea_orm::{Database, DatabaseConnection, DbErr}; +use sea_orm::{sqlx, Database, DatabaseConnection, DbErr}; use sea_orm_migration::prelude::*; use std::net::SocketAddr; use utoipa::OpenApi;