Bump reqwest from 0.11.12 to 0.11.13 (#249)

Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.12 to 0.11.13.
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.12...v0.11.13)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-11-23 10:02:56 -08:00 committed by GitHub
parent adf3c1fa2b
commit 9519a65b66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

8
Cargo.lock generated
View File

@ -808,9 +808,9 @@ dependencies = [
[[package]]
name = "native-tls"
version = "0.2.8"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
@ -1195,9 +1195,9 @@ dependencies = [
[[package]]
name = "reqwest"
version = "0.11.12"
version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
dependencies = [
"base64",
"bytes",

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
progenitor-client = { path = "../progenitor-client" }
reqwest = { version = "0.11.12", features = ["json", "stream"] }
reqwest = { version = "0.11.13", features = ["json", "stream"] }
base64 = "0.13"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
progenitor = { path = "../progenitor" }
reqwest = { version = "0.11.12", features = ["json", "stream"] }
reqwest = { version = "0.11.13", features = ["json", "stream"] }
schemars = { version = "0.8.11", features = ["uuid1"] }
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.2", features = ["serde", "v4"] }

View File

@ -10,7 +10,7 @@ description = "An OpenAPI client generator - client support"
bytes = "1.3.0"
futures-core = "0.3.25"
percent-encoding = "2.2"
reqwest = { version = "0.11.12", default-features = false, features = ["json", "stream"] }
reqwest = { version = "0.11.13", default-features = false, features = ["json", "stream"] }
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7.1"

View File

@ -23,6 +23,6 @@ futures = "0.3.25"
percent-encoding = "2.2"
rand = "0.8"
regress = "0.4.1"
reqwest = { version = "0.11.12", features = ["json", "stream"] }
reqwest = { version = "0.11.13", features = ["json", "stream"] }
schemars = { version = "0.8.11", features = ["uuid1"] }
uuid = { version = "1.2", features = ["serde", "v4"] }