Bump reqwest from 0.11.10 to 0.11.11 (#827)

Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.10 to 0.11.11.
- [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.10...v0.11.11)

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

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-06-20 09:47:41 +10:00 committed by GitHub
parent 542c71faa0
commit 831aef5eec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 14 deletions

31
Cargo.lock generated
View file

@ -772,28 +772,28 @@ dependencies = [
[[package]] [[package]]
name = "cookie" name = "cookie"
version = "0.15.1" version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f1c7727e460397e56abc4bddc1d49e07a1ad78fc98eb2e1c8f032a58a2f80d" checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
dependencies = [ dependencies = [
"percent-encoding", "percent-encoding",
"time 0.2.27", "time 0.3.9",
"version_check", "version_check",
] ]
[[package]] [[package]]
name = "cookie_store" name = "cookie_store"
version = "0.15.1" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3f7034c0932dc36f5bd8ec37368d971346809435824f277cb3b8299fc56167c" checksum = "2e4b6aa369f41f5faa04bb80c9b1f4216ea81646ed6124d76ba5c49a7aafd9cd"
dependencies = [ dependencies = [
"cookie 0.15.1", "cookie 0.16.0",
"idna", "idna",
"log", "log",
"publicsuffix", "publicsuffix",
"serde", "serde",
"serde_json", "serde_json",
"time 0.2.27", "time 0.3.9",
"url", "url",
] ]
@ -3112,13 +3112,13 @@ dependencies = [
[[package]] [[package]]
name = "reqwest" name = "reqwest"
version = "0.11.10" version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
dependencies = [ dependencies = [
"base64 0.13.0", "base64 0.13.0",
"bytes", "bytes",
"cookie 0.15.1", "cookie 0.16.0",
"cookie_store", "cookie_store",
"encoding_rs", "encoding_rs",
"futures-core", "futures-core",
@ -3142,6 +3142,7 @@ dependencies = [
"serde_urlencoded", "serde_urlencoded",
"tokio", "tokio",
"tokio-native-tls", "tokio-native-tls",
"tower-service",
"url", "url",
"wasm-bindgen", "wasm-bindgen",
"wasm-bindgen-futures", "wasm-bindgen-futures",
@ -3860,7 +3861,7 @@ dependencies = [
"serde", "serde",
"standback", "standback",
"stdweb", "stdweb",
"time-macros", "time-macros 0.1.1",
"version_check", "version_check",
"winapi", "winapi",
] ]
@ -3871,8 +3872,10 @@ version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
dependencies = [ dependencies = [
"itoa 1.0.2",
"libc", "libc",
"num_threads", "num_threads",
"time-macros 0.2.4",
] ]
[[package]] [[package]]
@ -3885,6 +3888,12 @@ dependencies = [
"time-macros-impl", "time-macros-impl",
] ]
[[package]]
name = "time-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
[[package]] [[package]]
name = "time-macros-impl" name = "time-macros-impl"
version = "0.1.2" version = "0.1.2"

View file

@ -12,7 +12,7 @@ repository = "https://github.com/kanidm/kanidm/"
[dependencies] [dependencies]
tracing = "^0.1.35" tracing = "^0.1.35"
reqwest = { version = "^0.11.10", features=["cookies", "json", "native-tls"] } reqwest = { version = "^0.11.11", features=["cookies", "json", "native-tls"] }
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" } kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
serde = { version = "^1.0.137", features = ["derive"] } serde = { version = "^1.0.137", features = ["derive"] }
serde_json = "^1.0.80" serde_json = "^1.0.80"

View file

@ -68,7 +68,7 @@ rusqlite = "^0.27.0"
r2d2 = "^0.8.9" r2d2 = "^0.8.9"
r2d2_sqlite = "^0.20.0" r2d2_sqlite = "^0.20.0"
reqwest = "^0.11.10" reqwest = "^0.11.11"
users = "^0.11.0" users = "^0.11.0"
#async-std = { version = "^1.11.0", features = ["tokio1"] } #async-std = { version = "^1.11.0", features = ["tokio1"] }

View file

@ -53,4 +53,4 @@ base64 = "^0.13.0"
kanidm_client = { path = "../../kanidm_client" } kanidm_client = { path = "../../kanidm_client" }
url = { version = "^2.2.2", features = ["serde"] } url = { version = "^2.2.2", features = ["serde"] }
reqwest = { version = "0.11.10", features=["cookies", "json", "native-tls"] } reqwest = { version = "0.11.11", features=["cookies", "json", "native-tls"] }