Skip to content

Commit

Permalink
Use Tauri workspace dependencies again
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Dec 3, 2024
1 parent 042e66b commit b9279e0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ similar-asserts = "1.6.0"
axum = "0.7.9"
axum-server = "0.7.1"
tower-http = "0.6.2"
tauri = "2.1.1"
tauri-plugin-log = "2.0.3"
tauri-plugin-process = "2"
tauri-plugin-shell = "2"
tauri-plugin-clipboard-manager = "2.0.2"
tauri-plugin-dialog = "2"

[profile.release]
# Those are the settings recommended on https://tauri.app/v1/guides/building/app-size/.
Expand Down
15 changes: 7 additions & 8 deletions gui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "reaboot-gui"
description = "ReaBoot - a convenient all-in-one online installer for REAPER, ReaPack and arbitrary packages."
# TODO-high Use workspace value again (was changed for Tauri migration)
version = "0.7.0"
version.workspace = true
edition.workspace = true
authors.workspace = true

Expand All @@ -15,8 +15,7 @@ tauri-build = { version = "2", features = [] }
reaboot-core.workspace = true
reaboot-reapack.workspace = true
# GUI framework
# TODO-high Use workspace value again (was changed for Tauri migration)
tauri = { version = "2", features = [ "devtools"] }
tauri = { workspace = true, features = ["devtools"] }
# For (de)serializing commands and events
serde = { workspace = true, features = ["derive"] }
# For (de)serializing commands and events
Expand All @@ -26,7 +25,7 @@ tokio = { workspace = true, features = ["time"] }
# For easier error handling
anyhow.workspace = true
# For logging in frontend
tauri-plugin-log = { version = "2" }
tauri-plugin-log.workspace = true
# For logging in backend
tracing.workspace = true
# For generating TypeScript types
Expand All @@ -35,10 +34,10 @@ ts-rs.workspace = true
markdown.workspace = true
# For getting a correctly removed temporary REAPER download directory
tempdir.workspace = true
tauri-plugin-process = "2"
tauri-plugin-shell = "2"
tauri-plugin-clipboard-manager = "2.0.2"
tauri-plugin-dialog = "2"
tauri-plugin-process.workspace = true
tauri-plugin-shell.workspace = true
tauri-plugin-clipboard-manager.workspace = true
tauri-plugin-dialog.workspace = true

[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
Expand Down

0 comments on commit b9279e0

Please sign in to comment.