From 3883cfb1fb9d023f8b7de8a936b726a41d577312 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 11:12:25 -0500 Subject: [PATCH] Update Rust crate rustls-pemfile to 2.1.2 (#852) --- Cargo.lock | 24 +++++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 736acc606..74f939759 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -643,6 +643,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "base64-simd" version = "0.8.0" @@ -1317,7 +1323,7 @@ version = "7.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" dependencies = [ - "base64", + "base64 0.21.7", "byteorder", "flate2", "nom", @@ -1742,7 +1748,7 @@ dependencies = [ "nativelink-worker", "parking_lot", "prometheus-client", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "scopeguard", "serde_json5", "tokio", @@ -2550,16 +2556,16 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64", + "base64 0.21.7", ] [[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", + "base64 0.22.0", "rustls-pki-types", ] @@ -3071,7 +3077,7 @@ dependencies = [ "async-stream", "async-trait", "axum", - "base64", + "base64 0.21.7", "bytes", "h2", "http 0.2.12", @@ -3098,7 +3104,7 @@ dependencies = [ "async-stream", "async-trait", "axum", - "base64", + "base64 0.21.7", "bytes", "flate2", "h2", @@ -3109,7 +3115,7 @@ dependencies = [ "percent-encoding", "pin-project", "prost", - "rustls-pemfile 2.1.1", + "rustls-pemfile 2.1.2", "rustls-pki-types", "tokio", "tokio-rustls 0.25.0", diff --git a/Cargo.toml b/Cargo.toml index 6d532689a..6eeb2f757 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ hyper = { version = "0.14.28" } mimalloc = "0.1.39" parking_lot = "0.12.1" prometheus-client = "0.21.2" -rustls-pemfile = "2.1.1" +rustls-pemfile = "2.1.2" scopeguard = "1.2.0" serde_json5 = "0.1.0" tokio = { version = "1.37.0", features = ["rt-multi-thread", "signal"] }