From c3ab0ebb38ab2459d557ae5fe3fb3333bb1c1506 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 13 Mar 2025 14:02:48 +0100 Subject: [PATCH] Enable devtools for debugging (#342) --- runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d6835ac..3d72d2b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -9,7 +9,7 @@ authors = ["Thorsten Sommer"] tauri-build = { version = "1.5", features = [] } [dependencies] -tauri = { version = "1.8", features = [ "http-all", "updater", "shell-sidecar", "shell-open", "dialog"] } +tauri = { version = "1.8", features = [ "http-all", "updater", "shell-sidecar", "shell-open", "dialog", "devtools"] } tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } serde = { version = "1.0.218", features = ["derive"] } serde_json = "1.0.134"