Skip to content

Commit

Permalink
Merge pull request #10 from langyo/dependabot/cargo/cargo-deps-eac1b0…
Browse files Browse the repository at this point in the history
…089c

Bump the cargo-deps group with 3 updates
  • Loading branch information
langyo authored Jan 4, 2025
2 parents c322277 + 16f183c commit 2c52864
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ tracing-appender = { workspace = true }
image = { workspace = true }
webp = { workspace = true }

axum = { version = "^0.7", features = ["query", "multipart"] }
axum-extra = { version = "^0.9", features = [
axum = { version = "^0.8", features = ["query", "multipart"] }
axum-extra = { version = "^0.10", features = [
"typed-header",
"multipart",
"cookie",
Expand Down
1 change: 0 additions & 1 deletion packages/server/src/utils/auth_extrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ use _types::response::AuthInfo;

pub struct ExtractAuthInfo(pub AuthInfo);

#[async_trait::async_trait]
impl FromRequestParts<RouteEnv> for ExtractAuthInfo {
type Rejection = Response;

Expand Down
1 change: 0 additions & 1 deletion packages/server/src/utils/ip_extrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use axum::{
#[allow(dead_code)]
pub struct ExtractIP(pub Option<std::net::IpAddr>);

#[async_trait::async_trait]
impl<S> FromRequestParts<S> for ExtractIP
where
S: Send + Sync,
Expand Down
1 change: 0 additions & 1 deletion packages/server/src/utils/language_extrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use _types::i18n::Language;

pub struct ExtractLanguageInfo(pub Language);

#[async_trait::async_trait]
impl<S> FromRequestParts<S> for ExtractLanguageInfo
where
S: Send + Sync,
Expand Down
2 changes: 1 addition & 1 deletion packages/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ strum = { workspace = true }
uuid = { workspace = true }
log = { workspace = true }

yuuka = "^0.5"
yuuka = "^0.6"
sea-orm = { workspace = true }

0 comments on commit 2c52864

Please sign in to comment.