summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-10-24 17:05:32 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-10-24 17:05:32 +0200
commitc9921c5466eb71adde4b42192b4e639dde39e701 (patch)
tree88a070e456f477ae86eb143cb3a83726bc7f47c1
parent4d4623f5b7e62b71f2ab0044844566c01ce0c7b8 (diff)
Fix: Import serde with derive feature
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--person-api-types/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/person-api-types/Cargo.toml b/person-api-types/Cargo.toml
index e1665fc..4b614bf 100644
--- a/person-api-types/Cargo.toml
+++ b/person-api-types/Cargo.toml
@@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-serde = "1"
+serde = { version = "1", features = ["derive"] }