From d05e696d456cc8af23fd7252acba2d3270a10b65 Mon Sep 17 00:00:00 2001 From: ljedrz Date: Thu, 23 Dec 2021 18:51:13 +0100 Subject: [PATCH] chore: fix optional attribute for `serde` feature (#571) Signed-off-by: ljedrz --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 50ed4da..925985e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ unicode-segmentation = "1.2" unicode-width = "0.1" termion = { version = "1.5", optional = true } crossterm = { version = "0.22", optional = true } -serde = { version = "1", "optional" = true, features = ["derive"]} +serde = { version = "1", optional = true, features = ["derive"]} [dev-dependencies] rand = "0.8"