Fix crash on windows (#3041)

This commit is contained in:
Geometrically 2024-12-18 23:53:00 -07:00 committed by GitHub
parent 76b1d1df8c
commit c082148ecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@ -8821,7 +8821,8 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime" name = "tauri-runtime"
version = "2.2.0" version = "2.2.0"
source = "git+https://github.com/modrinth/tauri?rev=70a252b#70a252bb08494e515d5bd50c424ba56f75eec701" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cce18d43f80d4aba3aa8a0c953bbe835f3d0f2370aca75e8dbb14bd4bab27958"
dependencies = [ dependencies = [
"dpi", "dpi",
"gtk", "gtk",
@ -8839,7 +8840,8 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime-wry" name = "tauri-runtime-wry"
version = "2.2.0" version = "2.2.0"
source = "git+https://github.com/modrinth/tauri?rev=70a252b#70a252bb08494e515d5bd50c424ba56f75eec701" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f442a38863e10129ffe2cec7bd09c2dcf8a098a3a27801a476a304d5bb991d2"
dependencies = [ dependencies = [
"gtk", "gtk",
"http 1.1.0", "http 1.1.0",
@ -8864,7 +8866,8 @@ dependencies = [
[[package]] [[package]]
name = "tauri-utils" name = "tauri-utils"
version = "2.1.0" version = "2.1.0"
source = "git+https://github.com/modrinth/tauri?rev=70a252b#70a252bb08494e515d5bd50c424ba56f75eec701" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9271a88f99b4adea0dc71d0baca4505475a0bbd139fb135f62958721aaa8fe54"
dependencies = [ dependencies = [
"brotli 7.0.0", "brotli 7.0.0",
"cargo_metadata", "cargo_metadata",
@ -10862,8 +10865,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]] [[package]]
name = "wry" name = "wry"
version = "0.47.2" version = "0.47.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/modrinth/wry?rev=e88d4a1#e88d4a10286f58902f50d5dc6c11363220a8be10"
checksum = "61ce51277d65170f6379d8cda935c80e3c2d1f0ff712a123c8bddb11b31a4b73"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"block2", "block2",

View File

@ -21,6 +21,4 @@ strip = true # Remove debug symbols
opt-level = 3 opt-level = 3
[patch.crates-io] [patch.crates-io]
tauri-runtime = { git = "https://github.com/modrinth/tauri", rev ="70a252b" } wry = { git = "https://github.com/modrinth/wry", rev ="e88d4a1" }
tauri-runtime-wry = { git = "https://github.com/modrinth/tauri", rev ="70a252b" }
tauri-utils = { git = "https://github.com/modrinth/tauri", rev ="70a252b" }