From e80132ba7847924c19663759bba856d970af8cdb Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Wed, 20 Nov 2024 18:24:43 +0200 Subject: [PATCH] --- src-tauri/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e065e90..439812d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -14,9 +14,15 @@ serde_json = "1.0.133" [features] custom-protocol = ["tauri/custom-protocol"] +default = [] +Debug = ["unbug/enable"] + [target."cfg(windows)".dependencies] winapi = { version = "0.3.9", features = ["shellscalingapi"] } [[bin]] name = "Build" path = "build.rs" + +[dependencies] +unbug = { version = "0.2.0", features = ["enable"] }