From 0a122d57d31cb8f0836f7f46e9edb53010db3508 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Mon, 9 Sep 2024 22:08:50 +0200 Subject: [PATCH] chore(swap): Disable cargo tauri integration feature by default (#74) --- swap/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 65b8228d..a349f3ed 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -91,7 +91,9 @@ sqlx = { version = "0.6.3", features = [ ] } structopt = "0.3" strum = { version = "0.26", features = [ "derive" ] } -tauri = { version = "2.0.0-rc.1", features = [ "config-json5" ], optional = true } +tauri = { version = "2.0.0-rc.1", features = [ + "config-json5", +], optional = true, default-features = false } thiserror = "1" time = "0.3" tokio = { version = "1", features = [