diff --git a/Cargo.lock b/Cargo.lock index f909077c..19992b8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -666,6 +666,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" + [[package]] name = "base64ct" version = "1.8.3" @@ -2752,7 +2758,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-util", @@ -3261,7 +3267,7 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" name = "komorebi" version = "0.1.42" dependencies = [ - "base64", + "base64 0.23.1", "bitflags 2.13.1", "chrono", "clap", @@ -5038,7 +5044,7 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85" dependencies = [ - "base64", + "base64 0.22.1", "indexmap 2.14.0", "quick-xml", "serde", @@ -5564,7 +5570,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "encoding_rs", "futures-channel", @@ -5947,7 +5953,7 @@ version = "3.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a" dependencies = [ - "base64", + "base64 0.22.1", "bs58", "chrono", "hex", @@ -7755,7 +7761,7 @@ name = "windows-icons" version = "0.1.0" source = "git+https://github.com/LGUG2Z/windows-icons?rev=0c9d7ee1b807347c507d3a9862dd007b4d3f4354#0c9d7ee1b807347c507d3a9862dd007b4d3f4354" dependencies = [ - "base64", + "base64 0.22.1", "image 0.25.10", "regex", "roxmltree", @@ -7769,7 +7775,7 @@ name = "windows-icons" version = "0.1.0" source = "git+https://github.com/LGUG2Z/windows-icons?rev=d67cc9920aa9b4883393e411fb4fa2ddd4c498b5#d67cc9920aa9b4883393e411fb4fa2ddd4c498b5" dependencies = [ - "base64", + "base64 0.22.1", "image 0.25.10", "winapi", "windows 0.58.0", diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index 27c3e953..59233c69 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -11,7 +11,7 @@ edition = "2024" komorebi-layouts = { path = "../komorebi-layouts", features = ["win32"] } komorebi-themes = { path = "../komorebi-themes" } -base64 = "0.22" +base64 = "0.23" bitflags = { version = "2", features = ["serde"] } clap = { workspace = true } chrono = { workspace = true }