Skip to content

Commit

Permalink
Update tauri deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Sep 15, 2024
1 parent e88cdc9 commit d5ac5fb
Show file tree
Hide file tree
Showing 5 changed files with 148 additions and 143 deletions.
16 changes: 8 additions & 8 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
"@sentry/react": "^8.7.0",
"@sentry/vite-plugin": "^2.18.0",
"@tanstack/react-router": "0.0.1-beta.204",
"@tauri-apps/api": "^2.0.0-rc.0",
"@tauri-apps/plugin-updater": "^2.0.0-rc.0",
"@tauri-apps/plugin-process": "^2.0.0-rc.0",
"@tauri-apps/plugin-notification": "^2.0.0-rc.0",
"@tauri-apps/plugin-fs": "^2.0.0-rc.0",
"@tauri-apps/plugin-shell": "^2.0.0-rc.0",
"@tauri-apps/plugin-os": "^2.0.0-rc.0",
"@tauri-apps/plugin-http": "^2.0.0-rc.0",
"@tauri-apps/api": "2.0.0-rc.4",
"@tauri-apps/plugin-fs": "2.0.0-rc.2",
"@tauri-apps/plugin-global-shortcut": "2.0.0-rc.0",
"@tauri-apps/plugin-http": "2.0.0-rc.2",
"@tauri-apps/plugin-notification": "2.0.0-rc.1",
"@tauri-apps/plugin-os": "2.0.0-rc.1",
"@tauri-apps/plugin-process": "2.0.0-rc.1",
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
"@tauri-apps/plugin-updater": "2.0.0-rc.2",
"@tauri-apps/plugin-websocket": "2.0.0-rc.0",
"@tauri-apps/plugin-window-state": "2.0.0-rc.0",
"class-variance-authority": "^0.7.0",
Expand Down
108 changes: 54 additions & 54 deletions apps/desktop/src-tauri/Cargo.lock

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

22 changes: 11 additions & 11 deletions apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "2.0.0-rc", features = [] }
tauri-build = { version = "2.0.0-rc.10", features = [] }

[dependencies]
tauri = { version = "2.0.0-rc", features = [
tauri = { version = "2.0.0-rc.10", features = [
"macos-private-api",
"devtools", "image-png", "image-ico", "tray-icon",
] }
Expand All @@ -22,19 +22,19 @@ serde_json = "1.0"
tokio = { version = "1.38.0", features = [
"full",
] } # Required for asynchronous operations
tauri-plugin-websocket = { version = "2.0.0-rc" }
tauri-plugin-websocket = { version = "2.0.0-rc.1" }

# NOTE: we are using a forked version because of this issue
# https://github.com/tauri-apps/plugins-workspace/issues/1546
tauri-plugin-window-state = { git = "https://github.com/Hacksore/plugins-workspace", branch = "v2" }

tauri-plugin-single-instance = { version = "2.0.0-rc" }
tauri-plugin-fs = "2.0.0-rc"
tauri-plugin-process = "2.0.0-rc"
tauri-plugin-shell = "2.0.0-rc"
tauri-plugin-os = "2.0.0-rc"
tauri-plugin-http = "2.0.0-rc"
tauri-plugin-log = "2.0.0-rc"
tauri-plugin-single-instance = { version = "2.0.0-rc.3" }
tauri-plugin-fs = "2.0.0-rc.3"
tauri-plugin-process = "2.0.0-rc.1"
tauri-plugin-shell = "2.0.0-rc.3"
tauri-plugin-os = "2.0.0-rc.1"
tauri-plugin-http = "2.0.0-rc.4"
tauri-plugin-log = "2.0.0-rc.2"
anyhow = "1.0.86"
log = "0.4.22"

Expand All @@ -46,7 +46,7 @@ tauri-nspanel = { git = "https://github.com/ahkohd/tauri-nspanel", branch = "v2"
system-notification = { git = "https://github.com/ahkohd/tauri-toolkit", branch = "v2" }

[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
tauri-plugin-updater = "2.0.0-rc.1"
tauri-plugin-updater = "2.0.0-rc.3"

[features]
# this feature is used for production builds or when `devPath` points to the filesystem
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/gen/schemas/acl-manifests.json

Large diffs are not rendered by default.

Loading

0 comments on commit d5ac5fb

Please sign in to comment.