1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

build(deps): bump webpki-roots from 0.23.1 to 0.24.0

Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 0.23.1 to 0.24.0.
- [Commits](https://github.com/rustls/webpki-roots/compare/v/0.23.1...v/0.24.0)

---
updated-dependencies:
- dependency-name: webpki-roots
  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-07-06 19:13:04 +00:00
committed by Quentin Gliech
parent d68b6acd40
commit e07b91bba1
2 changed files with 11 additions and 2 deletions

11
Cargo.lock generated
View File

@ -3302,7 +3302,7 @@ dependencies = [
"tracing",
"tracing-opentelemetry",
"webpki",
"webpki-roots 0.23.1",
"webpki-roots 0.24.0",
]
[[package]]
@ -6959,6 +6959,15 @@ dependencies = [
"rustls-webpki 0.100.1",
]
[[package]]
name = "webpki-roots"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
dependencies = [
"rustls-webpki 0.101.0",
]
[[package]]
name = "whoami"
version = "1.4.0"

View File

@ -30,7 +30,7 @@ tower-http = { version = "0.4.1", features = ["cors"] }
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
webpki = { version = "0.22.0", optional = true }
webpki-roots = { version = "0.23.1", optional = true }
webpki-roots = { version = "0.24.0", optional = true }
mas-tower = { path = "../tower" }