diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 7bec794f..0d5cf5dd 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -158,6 +158,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" + [[package]] name = "bit-set" version = "0.8.0" @@ -4580,7 +4586,7 @@ name = "thuki" version = "0.16.2" dependencies = [ "async-trait", - "base64 0.22.1", + "base64 0.23.0", "block2", "core-foundation 0.10.1", "core-graphics", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 00afa281..fb528986 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -40,7 +40,7 @@ rusqlite = { version = "0.40", features = ["bundled"] } uuid = { version = "1", features = ["v4"] } dirs = "6" image = { version = "0.25", default-features = false, features = ["jpeg", "png", "gif", "webp"] } -base64 = "0.22" +base64 = "0.23" html-escape = "0.2" thiserror = "2" time = { version = "0.3", features = ["std", "local-offset", "macros", "parsing"] }