From 82f28f0f88c415326d9f1dfb2c7afb824c4cbe71 Mon Sep 17 00:00:00 2001 From: Abdo Omar <128975938+AbdoOmarEg@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:22:51 +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 d455521..16a9b1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,4 +40,3 @@ quickcheck_macros = "0.9.1" fake = "~2.3.0" wiremock = "0.5" serde_json = "1.0.61" -reqwest = { version = "0.11", features = ["json"] }