diff --git a/library/src/social/google.rs b/library/src/social/google.rs index f9edf1d..9293862 100644 --- a/library/src/social/google.rs +++ b/library/src/social/google.rs @@ -109,6 +109,7 @@ struct GooglePublicKey { e: String, n: String, kty: String, + #[serde(rename = "use")] use_: String, alg: String, kid: String, @@ -117,6 +118,7 @@ struct GooglePublicKey { #[derive(Deserialize, Debug, Clone, Default)] struct GooglePublicKeys { keys: Vec, + #[serde(skip)] refresh_at: i64, }