Skip to content

Commit

Permalink
fix: cargo warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
starvy committed Mar 14, 2023
1 parent 0bb5cad commit f75a04b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/routes/admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::net::{SocketAddr, IpAddr, Ipv4Addr};

use portfolio_core::{
crypto::random_12_char_string,
services::{admin_service::AdminService, application_service::ApplicationService, portfolio_service::PortfolioService}, models::{candidate::{CreateCandidateResponse, ApplicationDetails}, auth::AuthenticableTrait, application::ApplicationResponse}, sea_orm::prelude::Uuid, Query, error::ServiceError, utils::csv,
services::{admin_service::AdminService, application_service::ApplicationService, portfolio_service::PortfolioService}, models::{candidate::{CreateCandidateResponse, ApplicationDetails}, auth::AuthenticableTrait, application::ApplicationResponse}, sea_orm::prelude::Uuid, Query, error::ServiceError,
};
use requests::{AdminLoginRequest, RegisterRequest};
use rocket::http::{Cookie, Status, CookieJar};
Expand Down
1 change: 0 additions & 1 deletion core/src/utils/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use crate::{
};
use sea_orm::DbConn;
use async_trait::async_trait;
use futures::future::{join_all, try_join_all};
use crate::models::candidate::{CandidateRow, FieldOfStudy, FieldsCombination};
use crate::models::candidate_details::EncryptedCandidateDetails;
use crate::models::school::School;
Expand Down

0 comments on commit f75a04b

Please sign in to comment.