diff --git a/Cargo.lock b/Cargo.lock index 036b20b3e..eb2a580a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2928,7 +2928,7 @@ dependencies = [ "percent-encoding", "quoted_printable", "rustls 0.22.4", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "socket2 0.5.7", "tokio", "tokio-rustls", @@ -3154,7 +3154,7 @@ dependencies = [ "pem-rfc7468", "rand", "rand_chacha", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "rustls-pki-types", "schemars", "serde", @@ -3446,7 +3446,7 @@ dependencies = [ "hyper 0.14.28", "libc", "pin-project-lite", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "socket2 0.5.7", "thiserror", "tokio", @@ -4939,7 +4939,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "rustls-pki-types", "schannel", "security-framework", @@ -4956,11 +4956,11 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab" +checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.21.7", + "base64 0.22.0", "rustls-pki-types", ] diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index f86075d81..a4bc945ab 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -32,7 +32,7 @@ serde_json.workspace = true pem-rfc7468 = "0.7.0" rustls-pki-types = "1.5.0" -rustls-pemfile = "2.1.1" +rustls-pemfile = "2.1.2" rand.workspace = true rand_chacha = "0.3.1" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 4dec7c96a..0a1173567 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -29,7 +29,7 @@ tracing.workspace = true [dev-dependencies] anyhow.workspace = true -rustls-pemfile = "2.1.1" +rustls-pemfile = "2.1.2" tokio = { version = "1.37.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } tokio-test = "0.4.4" tracing-subscriber.workspace = true