diff --git a/rust/Cargo.lock b/rust/Cargo.lock index afde8b7a0..63eaf87d4 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -6053,9 +6053,9 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da520ff07c0745199204f7a7a62a8c6ee1666313b792b051ca170eca04649aa" +checksum = "f078117725e36d55d29fafcbb4b1e909073807ca328ae8deb8c0b3843aac0fed" dependencies = [ "anyhow", "cocoa 0.24.1", @@ -6182,9 +6182,9 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "0.14.4" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a561ae38c6b27510c77a3ab4cf65bebe18fba51ca4569e023fb9e194ff4995fb" +checksum = "067c56fc153b3caf406d7cd6de4486c80d1d66c0f414f39e94cb2f5543f6445f" dependencies = [ "cocoa 0.24.1", "gtk", diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index 9cb361c72..de389ec99 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -39,7 +39,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" semver = { version = "1.0.22", features = ["serde"] } subtle = "2.5.0" -tauri = { version = "1.5", features = [ "dialog", "shell-open-api", "system-tray" ] } +tauri = { version = "1.6", features = [ "dialog", "shell-open-api", "system-tray" ] } tauri-runtime = "0.14.2" tauri-utils = "1.5.3" thiserror = { version = "1.0", default-features = false } @@ -87,4 +87,6 @@ features = [ [features] # this feature is used for production builds or when `devPath` points to the filesystem # DO NOT REMOVE!! +# TODO: We can probably remove this, per +# I don't know how to verify this change, so I won't do it right now. custom-protocol = ["tauri/custom-protocol"]