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:22:51 +02:00 committed by GitHub
parent af2510d592
commit 82f28f0f88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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