From d513d16da0862274e9dc0246b0b47317654fdbc4 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 23 Jan 2025 17:03:24 +0100 Subject: [PATCH] chore: Use serde derive feature to enable derive macro Signed-off-by: Techassi --- kube-derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kube-derive/Cargo.toml b/kube-derive/Cargo.toml index bec4990f6..a1821f640 100644 --- a/kube-derive/Cargo.toml +++ b/kube-derive/Cargo.toml @@ -18,7 +18,7 @@ workspace = true proc-macro2.workspace = true quote.workspace = true syn = { workspace = true, features = ["extra-traits"] } -serde.workspace = true +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true darling.workspace = true