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
# [...]
This commit is contained in:
Abdo Omar 2024-03-27 00:23:28 +02:00 committed by GitHub
parent b2de856b3d
commit 4a46e01e02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"