Skip to content

Commit

Permalink
fix: tauri version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Jul 15, 2023
1 parent 36312f3 commit a44ec84
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 21 deletions.
85 changes: 70 additions & 15 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tauri-build = { version = "1.0.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.0.0-alpha.10", features = ["api-all", "icon-ico", "system-tray"] }
tauri = { version = "1.4.1", features = ["api-all", "icon-ico", "system-tray"] }
tauri-plugin-window-state = { version = "^0.1.0" }
reqwest = "0.11.14"
base64 = "0.13.0"
Expand All @@ -27,12 +27,11 @@ device_query = "1.1.3"
sysinfo = { version = "0.26.8" }

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
webkit2gtk = "0.18.0"
webkit2gtk = "0.18.2"

[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2"
objc-foundation = "0.1"
cocoa = "0.24"
cocoa = "0.25.0"

[target.'cfg(windows)'.dependencies]
webview2-com = "0.16.0"
Expand All @@ -51,5 +50,5 @@ features = [
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]

0 comments on commit a44ec84

Please sign in to comment.