cargo: Clean up serde dependencies

There is no need to include serde_derive separately,
as it can be specified as serde feature instead.

Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
Maksym Pavlenko
2022-05-17 14:04:38 -07:00
committed by Sebastien Boeuf
parent 7f29cef5d2
commit 3a0429c998
29 changed files with 31 additions and 48 deletions

View File

@@ -8,8 +8,7 @@ build = "build.rs"
[dependencies]
clap = { version = "3.1.18", features = ["wrap_help","cargo"] }
dirs = "4.0.0"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
test_infra = { path = "../test_infra" }
thiserror = "1.0.31"

View File

@@ -12,7 +12,7 @@ mod performance_tests;
use clap::{Arg, Command as ClapCommand};
use performance_tests::*;
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::{env, fmt, process::Command, sync::mpsc::channel, thread, time::Duration};
use thiserror::Error;