From 7364f97d24de294a0df69b8cf4264ba279a8f04f Mon Sep 17 00:00:00 2001 From: Noah Klayman Date: Thu, 11 Feb 2021 21:09:03 -0800 Subject: [PATCH] fix(tauri-utils/config): rename WindowConfig from camelCase (#1220) --- tauri-utils/src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tauri-utils/src/config.rs b/tauri-utils/src/config.rs index 9732be21e..697ec6819 100644 --- a/tauri-utils/src/config.rs +++ b/tauri-utils/src/config.rs @@ -50,6 +50,7 @@ impl<'de> Deserialize<'de> for WindowUrl { /// The window configuration object. #[derive(PartialEq, Deserialize, Debug, Clone)] +#[serde(rename_all = "camelCase")] pub struct WindowConfig { #[serde(default = "default_window_label")] /// The window identifier.