From 9bd7a0c46b22f7e37cfd571e89c2a2c826acbedc Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 9 Sep 2025 10:08:28 +0000 Subject: [PATCH] fix: use correct scope in client credentials exchange --- backend/Cargo.lock | 3 +-- backend/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 9b0a713448..7bec81a1a8 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -634,8 +634,7 @@ dependencies = [ [[package]] name = "async-oauth2" version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "021cf450e9574793e45e1044a5d3d94bba7dbaa0802e6122e9c10eb8c4dd12dc" +source = "git+https://github.com/rubenfiszel/async-oauth2?rev=3daef3162b44c4739745578a5bb1fa7e1132e3e5#3daef3162b44c4739745578a5bb1fa7e1132e3e5" dependencies = [ "base64 0.22.1", "bytes", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index bc3b1181e4..63ae5f8f97 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 = "^0" +async-oauth2 = { git = "https://github.com/rubenfiszel/async-oauth2", rev = "3daef3162b44c4739745578a5bb1fa7e1132e3e5" } reqwest = { version = "^0.12", features = ["json", "stream", "gzip", "multipart"] } time = "^0" serde_urlencoded = "^0"