From e5ec86bfcf3d022c0b903b4e09b814aba6d1ae73 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 22 Aug 2024 10:49:51 -0700 Subject: [PATCH] Move to workspace crate --- src-tauri/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index cae2dfb8..619eb78c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -28,7 +28,8 @@ openssl-sys = { version = "0.9", features = ["vendored"] } # For Ubuntu installa [dependencies] yaak_grpc = { path = "yaak_grpc" } yaak_templates = { path = "yaak_templates" } -yaak_plugin_runtime = { path = "yaak_plugin_runtime" } +yaak_plugin_runtime = { workspace = true } +yaak_models = { workspace = true } anyhow = "1.0.86" base64 = "0.22.0" chrono = { version = "0.4.31", features = ["serde"] } @@ -54,12 +55,12 @@ tauri-plugin-updater = "2.0.0-rc.0" tauri-plugin-window-state = "2.0.0-rc.0" tokio = { version = "1.36.0", features = ["sync"] } tokio-stream = "0.1.15" -yaak_models = {workspace = true} uuid = "1.7.0" thiserror = "1.0.61" mime_guess = "2.0.5" [workspace.dependencies] yaak_models = { path = "yaak_models" } +yaak_plugin_runtime = { path = "yaak_plugin_runtime" } tauri = { version = "2.0.0-rc.2", features = ["devtools", "protocol-asset"] } tauri-plugin-shell = "2.0.0-rc.0"