From 7c063e890f22644ad655550517ea98fd54d48616 Mon Sep 17 00:00:00 2001 From: EB Date: Sat, 2 Mar 2024 03:06:22 +0900 Subject: [PATCH] Update Cargo.toml (#365) * Update Cargo.toml serde::Deserialize is added features/derive * Update Cargo.toml --------- Co-authored-by: Rob Ede --- examples/easy-form-handling/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/easy-form-handling/Cargo.toml b/examples/easy-form-handling/Cargo.toml index 0977c6b..526d807 100644 --- a/examples/easy-form-handling/Cargo.toml +++ b/examples/easy-form-handling/Cargo.toml @@ -6,4 +6,4 @@ edition.workspace = true [dependencies] actix-web = "4" -serde = "1.0" +serde = { version = "1", features = ["derive"] }