Update reqwest version to 0.11.10 (#115)

* Update reqwest version to 0.11.10

* chore: udpate the correct version

---------

Co-authored-by: Ethan Brierley <ethan.brierley@truelayer.com>
pull/127/head
Pohan 2024-03-15 17:18:04 +01:00 committed by GitHub
parent 79dbb2d194
commit 0edce5364e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
- Changed minimum version of `reqwest` to `0.11.10`. url_mut, with_url, without_url functions are added after `0.11.10`.
### [0.2.4] - 2023-09-21 ### [0.2.4] - 2023-09-21
### Added ### Added

View File

@ -14,13 +14,12 @@ readme = "../README.md"
anyhow = "1.0.0" anyhow = "1.0.0"
async-trait = "0.1.51" async-trait = "0.1.51"
http = "0.2.0" http = "0.2.0"
reqwest = { version = "0.11.4", default-features = false, features = ["json", "multipart"] } reqwest = { version = "0.11.10", default-features = false, features = ["json", "multipart"] }
serde = "1.0.106" serde = "1.0.106"
task-local-extensions = "0.1.4" task-local-extensions = "0.1.4"
thiserror = "1.0.21" thiserror = "1.0.21"
[dev-dependencies] [dev-dependencies]
reqwest = "0.11.4"
reqwest-retry = { path = "../reqwest-retry" } reqwest-retry = { path = "../reqwest-retry" }
reqwest-tracing = { path = "../reqwest-tracing" } reqwest-tracing = { path = "../reqwest-tracing" }
tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] }