From 63c8f8b5f2bde7f1e091b4f3ec89670433f8d5b9 Mon Sep 17 00:00:00 2001 From: Lennart K <18233294+lennart-k@users.noreply.github.com> Date: Tue, 11 Feb 2025 12:57:20 +0100 Subject: [PATCH] Remove Default from TomlUserStoreConfig --- crates/store/src/auth/toml_user_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/store/src/auth/toml_user_store.rs b/crates/store/src/auth/toml_user_store.rs index fc0516f..2215bfc 100644 --- a/crates/store/src/auth/toml_user_store.rs +++ b/crates/store/src/auth/toml_user_store.rs @@ -16,7 +16,7 @@ struct TomlDataModel { principals: Vec, } -#[derive(Debug, Clone, Deserialize, Serialize, Default)] +#[derive(Debug, Clone, Deserialize, Serialize)] pub struct TomlUserStoreConfig { pub path: String, }