diff options
author | Vika <vika@fireburn.ru> | 2025-04-20 09:57:26 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-04-20 09:58:33 +0300 |
commit | 6f85c8520180d7f875457896a2b6fbf91f6d81e2 (patch) | |
tree | c5dda4a62d355794745038acb93a699568c97fc4 /indieauth/src | |
parent | 2ea9029faeb69d24e96c7167816e10824b5ffe7e (diff) | |
download | kittybox-6f85c8520180d7f875457896a2b6fbf91f6d81e2.tar.zst |
kittybox-indieauth: 0.3.1 → 0.3.2
Fix bug with the `IntrospectionEndpointAuthMethod` enum members being renamed incorrectly within serde Change-Id: I286330f8cb3b1270d342853ecd39ffbb95b3e164
Diffstat (limited to 'indieauth/src')
-rw-r--r-- | indieauth/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indieauth/src/lib.rs b/indieauth/src/lib.rs index 1582318..20c1316 100644 --- a/indieauth/src/lib.rs +++ b/indieauth/src/lib.rs @@ -39,7 +39,7 @@ pub use rand; #[serde(rename_all = "snake_case")] pub enum IntrospectionEndpointAuthMethod { /// `Authorization` header with a `Bearer` token. - #[serde(rename = "CamelCase")] + #[serde(rename_all = "PascalCase")] Bearer, /// A token passed as part of a POST request. ClientSecretPost, |