From 14655ad77898aa60eb26f3b485a750a844051acf Mon Sep 17 00:00:00 2001 From: Danilo Spinella Date: Wed, 17 Apr 2024 10:21:57 +0200 Subject: [PATCH] ipc: Add derive serde feature --- ipc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml index 2e2ec67..32ec1d2 100644 --- a/ipc/Cargo.toml +++ b/ipc/Cargo.toml @@ -13,5 +13,5 @@ categories = ["command-line-utilities", "multimedia"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = "1.0.197" +serde = { version = "1.0.197", features = ["derive"] } xdg = "2.5.2"