about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--indieauth/Cargo.toml2
-rw-r--r--indieauth/src/lib.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 601bbf7..783ec4f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1931,7 +1931,7 @@ dependencies = [
 
 [[package]]
 name = "kittybox-indieauth"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "axum-core",
  "data-encoding",
diff --git a/indieauth/Cargo.toml b/indieauth/Cargo.toml
index d2819d7..4ce4203 100644
--- a/indieauth/Cargo.toml
+++ b/indieauth/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "kittybox-indieauth"
-version = "0.3.1"
+version = "0.3.2"
 edition = "2021"
 
 [features]
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,