From dcbd5714dec6d5d744eafd399f21560e9e931069 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 09:21:07 +0000 Subject: [PATCH] chore(deps): update rust crate rustls-pemfile to v2 --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bbfb1a..4c121d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2111,11 +2111,12 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "1.0.4" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4" dependencies = [ "base64", + "rustls-pki-types", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8ec3550..f1bd40a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,7 +91,7 @@ rand = "0.8" ring = { version = "0.17.7", features = ["std"], default-features = false } rsa = { version = "0.9.6", features = ["sha2"] } rustls = { version = "0.22" } -rustls-pemfile = "1" +rustls-pemfile = "2" sec1 = { version = "0.7.3", features = ["der"], default-features = false } serde = { version = "1", features = ["derive", "rc"] } serde_json = "1"