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 rustls from 0.21.1 to 0.21.2

Bumps [rustls](https://github.com/rustls/rustls) from 0.21.1 to 0.21.2.
- [Changelog](https://github.com/rustls/rustls/blob/main/RELEASE_NOTES.md)
- [Commits](https://github.com/rustls/rustls/compare/v/0.21.1...v/0.21.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-06-14 20:01:14 +00:00
committed by Quentin Gliech
parent e052739610
commit 4ec134a996
4 changed files with 11 additions and 11 deletions

16
Cargo.lock generated
View File

@ -2691,7 +2691,7 @@ checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
dependencies = [ dependencies = [
"http", "http",
"hyper", "hyper",
"rustls 0.21.1", "rustls 0.21.2",
"rustls-native-certs", "rustls-native-certs",
"tokio", "tokio",
"tokio-rustls 0.24.1", "tokio-rustls 0.24.1",
@ -2998,7 +2998,7 @@ dependencies = [
"nom", "nom",
"once_cell", "once_cell",
"quoted_printable", "quoted_printable",
"rustls 0.21.1", "rustls 0.21.2",
"rustls-pemfile", "rustls-pemfile",
"socket2", "socket2",
"tokio", "tokio",
@ -3166,7 +3166,7 @@ dependencies = [
"prometheus", "prometheus",
"rand 0.8.5", "rand 0.8.5",
"rand_chacha 0.3.1", "rand_chacha 0.3.1",
"rustls 0.21.1", "rustls 0.21.2",
"sentry", "sentry",
"sentry-tower", "sentry-tower",
"sentry-tracing", "sentry-tracing",
@ -3347,7 +3347,7 @@ dependencies = [
"mas-tower", "mas-tower",
"once_cell", "once_cell",
"opentelemetry", "opentelemetry",
"rustls 0.21.1", "rustls 0.21.2",
"rustls-native-certs", "rustls-native-certs",
"serde", "serde",
"serde_json", "serde_json",
@ -3522,7 +3522,7 @@ dependencies = [
"once_cell", "once_cell",
"rand 0.8.5", "rand 0.8.5",
"rand_chacha 0.3.1", "rand_chacha 0.3.1",
"rustls 0.21.1", "rustls 0.21.2",
"serde", "serde",
"serde_json", "serde_json",
"serde_urlencoded", "serde_urlencoded",
@ -5099,9 +5099,9 @@ dependencies = [
[[package]] [[package]]
name = "rustls" name = "rustls"
version = "0.21.1" version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
dependencies = [ dependencies = [
"log", "log",
"ring", "ring",
@ -6095,7 +6095,7 @@ version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [ dependencies = [
"rustls 0.21.1", "rustls 0.21.2",
"tokio", "tokio",
] ]

View File

@ -19,7 +19,7 @@ itertools = "0.10.5"
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"
rustls = "0.21.1" rustls = "0.21.2"
serde_json = "1.0.96" serde_json = "1.0.96"
serde_yaml = "0.9.21" serde_yaml = "0.9.21"
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] } sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }

View File

@ -18,7 +18,7 @@ hyper = "0.14.26"
hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true } hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.18.0" once_cell = "1.18.0"
opentelemetry = "0.19.0" opentelemetry = "0.19.0"
rustls = { version = "0.21.1", optional = true } rustls = { version = "0.21.2", optional = true }
rustls-native-certs = { version = "0.6.2", optional = true } rustls-native-certs = { version = "0.6.2", optional = true }
serde = "1.0.164" serde = "1.0.164"
serde_json = "1.0.96" serde_json = "1.0.96"

View File

@ -48,7 +48,7 @@ oauth2-types = { path = "../oauth2-types" }
# Default http service # Default http service
http-body = { version = "0.4.5", optional = true } http-body = { version = "0.4.5", optional = true }
rustls = {version = "0.21.1", optional = true } rustls = {version = "0.21.2", optional = true }
[dependencies.hyper-rustls] [dependencies.hyper-rustls]
version = "0.24.0" version = "0.24.0"
features = ["http1", "http2", "rustls-native-certs"] features = ["http1", "http2", "rustls-native-certs"]