Update Rust crate base64 to 0.22.0 (#2874)

This commit is contained in:
renovate[bot] 2024-04-08 03:02:35 +00:00 committed by GitHub
parent 52577892eb
commit f0c83a4ded
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 5 deletions

12
Cargo.lock generated
View file

@ -360,6 +360,12 @@ version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "base64"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
[[package]] [[package]]
name = "bench" name = "bench"
version = "0.0.0" version = "0.0.0"
@ -4290,7 +4296,7 @@ dependencies = [
"assert_cmd", "assert_cmd",
"assert_fs", "assert_fs",
"axoupdater", "axoupdater",
"base64 0.21.7", "base64 0.22.0",
"byteorder", "byteorder",
"chrono", "chrono",
"clap", "clap",
@ -4349,7 +4355,7 @@ name = "uv-auth"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"base64 0.21.7", "base64 0.22.0",
"clap", "clap",
"once_cell", "once_cell",
"reqwest", "reqwest",
@ -4613,7 +4619,7 @@ name = "uv-git"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64 0.21.7", "base64 0.22.0",
"cache-key", "cache-key",
"cargo-util", "cargo-util",
"fs-err", "fs-err",

View file

@ -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"] } async_zip = { git = "https://github.com/charliermarsh/rs-async-zip", rev = "1dcb40cfe1bf5325a6fd4bfcf9894db40241f585", features = ["deflate"] }
axoupdater = { version = "0.3.1", default-features = false } axoupdater = { version = "0.3.1", default-features = false }
backoff = { version = "0.4.0" } backoff = { version = "0.4.0" }
base64 = { version = "0.21.7" } base64 = { version = "0.22.0" }
cachedir = { version = "0.3.1" } cachedir = { version = "0.3.1" }
cargo-util = { version = "0.2.8" } cargo-util = { version = "0.2.8" }
chrono = { version = "0.4.31" } chrono = { version = "0.4.31" }

View file

@ -71,7 +71,7 @@ tikv-jemallocator = { version = "0.5.4" }
[dev-dependencies] [dev-dependencies]
assert_cmd = { version = "2.0.14" } assert_cmd = { version = "2.0.14" }
assert_fs = { version = "1.1.0" } assert_fs = { version = "1.1.0" }
base64 = { version = "0.21.7" } base64 = { version = "0.22.0" }
byteorder = { version = "1.5.0" } byteorder = { version = "1.5.0" }
filetime = { version = "0.2.23" } filetime = { version = "0.2.23" }
indoc = { version = "2.0.4" } indoc = { version = "2.0.4" }