From 4a46e01e025201156f246bb860a13c4530d088e2 Mon Sep 17 00:00:00 2001 From: Abdo Omar <128975938+AbdoOmarEg@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:23:28 +0200 Subject: [PATCH] Update Cargo.toml, remove redundant reqwest dev-dependency avoid duplication as it's already in the main dependencies so no need for it in the dev-dependency quoting the book at chapter 7.2.2 page 168 [dependencies] # [...] # We need the `json` feature flag to serialize/deserialize JSON payloads reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] } [dev-dependencies] # Remove `reqwest`'s entry from this list # [...] --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3a4ab7d..02b5f0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,5 +42,4 @@ quickcheck_macros = "0.9.1" fake = "~2.3.0" wiremock = "0.5" serde_json = "1.0.61" -reqwest = { version = "0.11", features = ["json"] } linkify = "0.9"