From 6f85c8520180d7f875457896a2b6fbf91f6d81e2 Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 20 Apr 2025 09:57:26 +0300 Subject: kittybox-indieauth: 0.3.1 → 0.3.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix bug with the `IntrospectionEndpointAuthMethod` enum members being renamed incorrectly within serde Change-Id: I286330f8cb3b1270d342853ecd39ffbb95b3e164 --- indieauth/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indieauth/src/lib.rs') 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, -- cgit 1.4.1