2 Commits

Author SHA1 Message Date
a942f18655 Update dependency @fluentui/react-components to ^9.64.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-06-06 00:24:57 +00:00
7daafdc1aa Fix cargo clippy issues
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-05 08:54:53 +00:00
3 changed files with 308 additions and 322 deletions

View File

@ -3,7 +3,6 @@ use actix_web::body::BoxBody;
use actix_web::http::StatusCode;
use std::error::Error;
use std::fmt::{Display, Formatter};
use std::io::ErrorKind;
pub mod auth_controller;
pub mod group_controller;
@ -52,7 +51,7 @@ impl From<anyhow::Error> for HttpErr {
impl From<Box<dyn Error>> for HttpErr {
fn from(value: Box<dyn Error>) -> Self {
HttpErr::Err(std::io::Error::new(ErrorKind::Other, value.to_string()).into())
HttpErr::Err(std::io::Error::other(value.to_string()).into())
}
}
@ -82,7 +81,7 @@ impl From<reqwest::header::ToStrError> for HttpErr {
impl From<actix_web::Error> for HttpErr {
fn from(value: actix_web::Error) -> Self {
HttpErr::Err(std::io::Error::new(ErrorKind::Other, value.to_string()).into())
HttpErr::Err(std::io::Error::other(value.to_string()).into())
}
}

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@fluentui/react-components": "^9.63.0",
"@fluentui/react-components": "^9.64.0",
"@fluentui/react-icons": "^2.0.300",
"filesize": "^10.1.6",
"react": "^18.3.1",