From a122a28993e502f9fcccee8aa909aacf898437e0 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sun, 26 Sep 2021 09:07:15 -0400 Subject: [PATCH] Add derive feature for serde This feature had previously been indirectly required by a dependency, and this is no longer the case. --- taskchampion/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskchampion/Cargo.toml b/taskchampion/Cargo.toml index 6d29b4dd5..5c612ae86 100644 --- a/taskchampion/Cargo.toml +++ b/taskchampion/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] uuid = { version = "^0.8.2", features = ["serde", "v4"] } -serde = "^1.0.125" +serde = { version = "^1.0.125", features = ["derive"] } serde_json = "^1.0" chrono = { version = "^0.4.10", features = ["serde"] } anyhow = "1.0"