1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-06 05:42:30 +03:00

build(deps): bump itertools from 0.10.5 to 0.11.0

Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.5 to 0.11.0.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-06-22 20:01:00 +00:00
committed by Quentin Gliech
parent 8c42563e61
commit f584cd5243
2 changed files with 14 additions and 5 deletions

17
Cargo.lock generated
View File

@ -1523,7 +1523,7 @@ dependencies = [
"cranelift-codegen", "cranelift-codegen",
"cranelift-entity", "cranelift-entity",
"cranelift-frontend", "cranelift-frontend",
"itertools", "itertools 0.10.5",
"log", "log",
"smallvec", "smallvec",
"wasmparser", "wasmparser",
@ -2878,6 +2878,15 @@ dependencies = [
"either", "either",
] ]
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itoa" name = "itoa"
version = "1.0.6" version = "1.0.6"
@ -3114,7 +3123,7 @@ dependencies = [
"httpdate", "httpdate",
"hyper", "hyper",
"indoc", "indoc",
"itertools", "itertools 0.11.0",
"listenfd", "listenfd",
"mas-config", "mas-config",
"mas-data-model", "mas-data-model",
@ -4611,7 +4620,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools", "itertools 0.10.5",
"proc-macro2 1.0.60", "proc-macro2 1.0.60",
"quote 1.0.28", "quote 1.0.28",
"syn 1.0.109", "syn 1.0.109",
@ -5598,7 +5607,7 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
dependencies = [ dependencies = [
"itertools", "itertools 0.10.5",
"nom", "nom",
"unicode_categories", "unicode_categories",
] ]

View File

@ -15,7 +15,7 @@ clap = { version = "4.3.4", features = ["derive"] }
dotenv = "0.15.0" dotenv = "0.15.0"
httpdate = "1.0.2" httpdate = "1.0.2"
hyper = { version = "0.14.26", features = ["full"] } hyper = { version = "0.14.26", features = ["full"] }
itertools = "0.10.5" itertools = "0.11.0"
listenfd = "1.0.1" listenfd = "1.0.1"
rand = "0.8.5" rand = "0.8.5"
rand_chacha = "0.3.1" rand_chacha = "0.3.1"