From 204e64ea005f3782537eb55dc391f8073c9058cc Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 10 Sep 2025 07:14:40 +0000 Subject: [PATCH] use official async-oauth2 release --- backend/Cargo.lock | 5 +++-- backend/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 9de4d22934..5543ac0221 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -633,8 +633,9 @@ dependencies = [ [[package]] name = "async-oauth2" -version = "0.5.0" -source = "git+https://github.com/rubenfiszel/async-oauth2?rev=3daef3162b44c4739745578a5bb1fa7e1132e3e5#3daef3162b44c4739745578a5bb1fa7e1132e3e5" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "850b60ddcc664dcd848f8a2fa8436ab9336e051d6dd2b3f21f897dd8e9c24703" dependencies = [ "base64 0.22.1", "bytes", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index bc06694b78..38bf7dfd2a 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -238,7 +238,7 @@ cron = "^0" mail-send = { version = "0.4.0", features = ["builder"], default-features=false } urlencoding = "^2" url = { version = "^2" , features = ["serde"]} -async-oauth2 = { git = "https://github.com/rubenfiszel/async-oauth2", rev = "3daef3162b44c4739745578a5bb1fa7e1132e3e5" } +async-oauth2 = "0.5.1" reqwest = { version = "^0.12", features = ["json", "stream", "gzip", "multipart"] } time = "^0" serde_urlencoded = "^0"