From 116a74ffe1b0f421eb209a780b09f13b532643e6 Mon Sep 17 00:00:00 2001 From: shay7sev Date: Wed, 11 Feb 2026 14:02:47 +0800 Subject: [PATCH] fix(dep): kellnr auth-kit --- Cargo.lock | 10 ++++++---- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aa60031..447d426 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,6 +67,8 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "auth-kit" version = "0.1.1" +source = "sparse+https://kellnr.shay7sev.site/api/v1/crates/" +checksum = "e8227077fb87325c0a7c180222f3d9f4aa200d0fccbcc3270aa86c0898a57762" dependencies = [ "axum", "base64", @@ -567,7 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -1657,7 +1659,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.60.2", + "windows-sys 0.52.0", ] [[package]] @@ -1893,7 +1895,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -2442,7 +2444,7 @@ dependencies = [ "getrandom 0.3.4", "once_cell", "rustix", - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a8c9fe6..5ab9b87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ common-telemetry = { version = "0.1.5", registry = "kellnr", default-features = "with-anyhow", "with-sqlx", ] } -auth-kit = { path = "../auth-kit" } +auth-kit = { version = "0.1.1", registry = "kellnr" } # 认证库(JWT、OAuth2) axum = "0.8.8" http = "1.4.0"