From a3dc4d3ab604e17e1c9c8866a771b8ec5475e79d Mon Sep 17 00:00:00 2001 From: greysoh Date: Sun, 28 Apr 2024 21:48:22 -0400 Subject: [PATCH] fix: Fixes serde failing to clean build. --- gui/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/Cargo.toml b/gui/Cargo.toml index fecdde1..9dc9b1b 100644 --- a/gui/Cargo.toml +++ b/gui/Cargo.toml @@ -9,5 +9,5 @@ edition = "2021" eframe = "0.27.2" egui = "0.27.2" ehttp = { version = "0.5.0", features = ["json"] } -serde = "1.0.199" +serde = { version = "1.0.199", features = ["derive"] } serde_json = "1.0.116"