From d7b068b69236e11763c103ffcb0668df66d51ff5 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 25 Feb 2020 09:54:03 -0500 Subject: [PATCH] Fix serde missing derive feature Caused broken cargo install. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7ccf388..7d198448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ tui = {version = "0.8", features = ["crossterm"], default-features = false } lazy_static = "1.4.0" backtrace = "0.3" toml = "0.5.6" -serde = "1.0" +serde = {version = "1.0", features = ["derive"] } [dev-dependencies] assert_cmd = "0.12" @@ -54,4 +54,4 @@ assets = [ extended-description = """\ By default, bottom will look for a config file in ~/.config/bottom/bottom.toml. If one is not specified it will fall back to defaults. -""" \ No newline at end of file +"""