diff --git a/Cargo.lock b/Cargo.lock index b44241cc85..6904ff988d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -219,9 +219,9 @@ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] name = "base64" -version = "0.21.7" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" @@ -2889,14 +2889,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", "bitflags 2.9.0", "serde", "serde_derive", + "unicode-ident", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e88a508b30..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"] } @@ -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"