From f0c83a4deddd8045be273aa2e3d416124365c858 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 03:02:35 +0000 Subject: [PATCH] Update Rust crate base64 to 0.22.0 (#2874) --- Cargo.lock | 12 +++++++++--- Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ad109935d..169df2cff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -360,6 +360,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 = "bench" version = "0.0.0" @@ -4290,7 +4296,7 @@ dependencies = [ "assert_cmd", "assert_fs", "axoupdater", - "base64 0.21.7", + "base64 0.22.0", "byteorder", "chrono", "clap", @@ -4349,7 +4355,7 @@ name = "uv-auth" version = "0.0.1" dependencies = [ "async-trait", - "base64 0.21.7", + "base64 0.22.0", "clap", "once_cell", "reqwest", @@ -4613,7 +4619,7 @@ name = "uv-git" version = "0.0.1" dependencies = [ "anyhow", - "base64 0.21.7", + "base64 0.22.0", "cache-key", "cargo-util", "fs-err", diff --git a/Cargo.toml b/Cargo.toml index d857df461..b4feb886a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ async_http_range_reader = { version = "0.7.0" } async_zip = { git = "https://github.com/charliermarsh/rs-async-zip", rev = "1dcb40cfe1bf5325a6fd4bfcf9894db40241f585", features = ["deflate"] } axoupdater = { version = "0.3.1", default-features = false } backoff = { version = "0.4.0" } -base64 = { version = "0.21.7" } +base64 = { version = "0.22.0" } cachedir = { version = "0.3.1" } cargo-util = { version = "0.2.8" } chrono = { version = "0.4.31" } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 0dfb749a9..3aca2b61b 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -71,7 +71,7 @@ tikv-jemallocator = { version = "0.5.4" } [dev-dependencies] assert_cmd = { version = "2.0.14" } assert_fs = { version = "1.1.0" } -base64 = { version = "0.21.7" } +base64 = { version = "0.22.0" } byteorder = { version = "1.5.0" } filetime = { version = "0.2.23" } indoc = { version = "2.0.4" }