From e2d91b5b4f9c69e790310e87be5f5ecc613e4297 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Mar 2025 17:53:39 +0000 Subject: [PATCH 1/2] Bump ron from 0.8.1 to 0.9.0 Bumps [ron](https://github.com/ron-rs/ron) from 0.8.1 to 0.9.0. - [Release notes](https://github.com/ron-rs/ron/releases) - [Changelog](https://github.com/ron-rs/ron/blob/master/CHANGELOG.md) - [Commits](https://github.com/ron-rs/ron/compare/v0.8.1...v0.9.0) --- updated-dependencies: - dependency-name: ron dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++---- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b44241cc85..8c48984561 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,6 +223,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "base64ct" version = "1.6.0" @@ -1162,7 +1168,7 @@ dependencies = [ "anyhow", "asyncgit", "backtrace", - "base64", + "base64 0.21.7", "bitflags 2.9.0", "bugreport", "bwrap", @@ -2889,14 +2895,15 @@ dependencies = [ [[package]] name = "ron" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" +checksum = "63f3aa105dea217ef30d89581b65a4d527a19afc95ef5750be3890e8d3c5b837" dependencies = [ - "base64", + "base64 0.22.1", "bitflags 2.9.0", "serde", "serde_derive", + "unicode-ident", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e88a508b30..b5564e7c8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ ratatui = { version = "0.29", default-features = false, features = [ 'serde', ] } rayon-core = "1.12" -ron = "0.8" +ron = "0.9" scopeguard = "1.2" scopetime = { path = "./scopetime", version = "0.1" } serde = "1.0" From 1e90c1df0a726d9ce3660ffb58010d27f3bc84e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Mar 2025 17:53:20 +0000 Subject: [PATCH 2/2] Bump base64 from 0.21.7 to 0.22.1 Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.21.7 to 0.22.1. - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.7...v0.22.1) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++-------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8c48984561..6904ff988d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -217,12 +217,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - [[package]] name = "base64" version = "0.22.1" @@ -1168,7 +1162,7 @@ dependencies = [ "anyhow", "asyncgit", "backtrace", - "base64 0.21.7", + "base64", "bitflags 2.9.0", "bugreport", "bwrap", @@ -2899,7 +2893,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63f3aa105dea217ef30d89581b65a4d527a19afc95ef5750be3890e8d3c5b837" dependencies = [ - "base64 0.22.1", + "base64", "bitflags 2.9.0", "serde", "serde_derive", diff --git a/Cargo.toml b/Cargo.toml index b5564e7c8a..a1f93e07ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ build = "build.rs" anyhow = "1.0" asyncgit = { path = "./asyncgit", version = "0.27.0", default-features = false } backtrace = "0.3" -base64 = "0.21" +base64 = "0.22" bitflags = "2.9" bugreport = "0.5.1" bwrap = { version = "1.3", features = ["use_std"] }