From 6b2c56f3e5dec4eebb625ffeb198547acf004fd8 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Fri, 10 Oct 2025 01:57:48 +0200 Subject: [PATCH] added Deserialize to IDMapping --- src/store/id_mapping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/id_mapping.rs b/src/store/id_mapping.rs index 82bcc9f..540a80f 100644 --- a/src/store/id_mapping.rs +++ b/src/store/id_mapping.rs @@ -10,7 +10,7 @@ pub struct Name { pub last: String, } -#[derive(Clone, Serialize)] +#[derive(Clone, Serialize, Deserialize)] pub struct IDMapping { #[serde(flatten)] id_map: BTreeMap,