From 9eaaacca7b25c94eb5eb0b1ea6189cd19d7bb567 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 16:10:49 +0000 Subject: [PATCH] chore(deps): bump rustls-pemfile from 1.0.3 to 2.2.0 Bumps [rustls-pemfile](https://github.com/rustls/pemfile) from 1.0.3 to 2.2.0. - [Release notes](https://github.com/rustls/pemfile/releases) - [Commits](https://github.com/rustls/pemfile/compare/v/1.0.3...v/2.2.0) --- updated-dependencies: - dependency-name: rustls-pemfile dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 ++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c8d692..1afb01b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ dependencies = [ "pin-project-lite", "rustls 0.21.10", "rustls-native-certs", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "serde", "serde_json", "serde_urlencoded", @@ -541,20 +541,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "schannel", "security-framework", ] [[package]] name = "rustls-pemfile" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ "base64", ] +[[package]] +name = "rustls-pemfile" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "rustls-pki-types" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55" + [[package]] name = "rustls-webpki" version = "0.101.7" @@ -912,7 +927,7 @@ dependencies = [ "log", "reqwest", "rustls-native-certs", - "rustls-pemfile", + "rustls-pemfile 2.2.0", "serde", "serde_json", "sha2", diff --git a/Cargo.toml b/Cargo.toml index e1c6653..cfebdc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ serde_json = "1.0" sha2 = { version = "0.10", default-features = false } simple_logger = { version = "4.3", default-features = false, features = ["timestamps"] } log = { version = "0.4", features = ["serde", "release_max_level_debug"] } -rustls-pemfile = "1.0" +rustls-pemfile = "2.2" # optional reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-native-roots"], optional = true }