fix build while using modrinth tauri fork

This commit is contained in:
Jai A 2024-12-18 11:45:43 -07:00
parent c1b1e67a2c
commit 02dd2a3980
No known key found for this signature in database
GPG Key ID: 9A9F9B7250E9883C
2 changed files with 7 additions and 8 deletions

9
Cargo.lock generated
View File

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

View File

@ -20,5 +20,7 @@ strip = true # Remove debug symbols
[profile.dev.package.sqlx-macros]
opt-level = 3
# [patch.crates-io]
# tauri = { git = "https://github.com/modrinth/tauri", rev = "67911d5" }
[patch.crates-io]
tauri-runtime = { git = "https://github.com/modrinth/tauri", rev ="70a252b" }
tauri-runtime-wry = { git = "https://github.com/modrinth/tauri", rev ="70a252b" }
tauri-utils = { git = "https://github.com/modrinth/tauri", rev ="70a252b" }