diff --git a/Cargo.lock b/Cargo.lock index 29e4d3f7..b84ffcaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2691,7 +2691,7 @@ checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" dependencies = [ "http", "hyper", - "rustls 0.21.1", + "rustls 0.21.2", "rustls-native-certs", "tokio", "tokio-rustls 0.24.1", @@ -2998,7 +2998,7 @@ dependencies = [ "nom", "once_cell", "quoted_printable", - "rustls 0.21.1", + "rustls 0.21.2", "rustls-pemfile", "socket2", "tokio", @@ -3166,7 +3166,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.21.1", + "rustls 0.21.2", "sentry", "sentry-tower", "sentry-tracing", @@ -3347,7 +3347,7 @@ dependencies = [ "mas-tower", "once_cell", "opentelemetry", - "rustls 0.21.1", + "rustls 0.21.2", "rustls-native-certs", "serde", "serde_json", @@ -3522,7 +3522,7 @@ dependencies = [ "once_cell", "rand 0.8.5", "rand_chacha 0.3.1", - "rustls 0.21.1", + "rustls 0.21.2", "serde", "serde_json", "serde_urlencoded", @@ -5099,9 +5099,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.1" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" +checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" dependencies = [ "log", "ring", @@ -6095,7 +6095,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls 0.21.1", + "rustls 0.21.2", "tokio", ] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index a1ddbee1..8eafd8d2 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -19,7 +19,7 @@ itertools = "0.10.5" listenfd = "1.0.1" rand = "0.8.5" rand_chacha = "0.3.1" -rustls = "0.21.1" +rustls = "0.21.2" serde_json = "1.0.96" serde_yaml = "0.9.21" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 7770ab0a..63dfc4f0 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -18,7 +18,7 @@ hyper = "0.14.26" hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.18.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 } serde = "1.0.164" serde_json = "1.0.96" diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index fe1f17e2..1e9e91b2 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -48,7 +48,7 @@ oauth2-types = { path = "../oauth2-types" } # Default http service 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] version = "0.24.0" features = ["http1", "http2", "rustls-native-certs"]