From 694498b86e25965fba2de64fb459981582cceb9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Sat, 11 Oct 2025 15:25:29 +0200 Subject: [PATCH] fix(oauth): enable `pkce-plain` feature for `oauth2` --- packages/methods/shield-oauth/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/methods/shield-oauth/Cargo.toml b/packages/methods/shield-oauth/Cargo.toml index 4022540..3970739 100644 --- a/packages/methods/shield-oauth/Cargo.toml +++ b/packages/methods/shield-oauth/Cargo.toml @@ -20,7 +20,10 @@ rustls-tls = ["oauth2/rustls-tls"] async-trait.workspace = true bon.workspace = true chrono.workspace = true -oauth2 = { version = "5.0.0", default-features = false, features = ["reqwest"] } +oauth2 = { version = "5.0.0", default-features = false, features = [ + "pkce-plain", + "reqwest", +] } secrecy.workspace = true serde.workspace = true serde_json.workspace = true