From 707cda3ae1a77eb5e4b9692066f772b3bdc98be8 Mon Sep 17 00:00:00 2001 From: Kareem Mahlees Date: Sat, 30 Dec 2023 20:08:38 +0200 Subject: [PATCH] chore: remove extra space causing warnings in workflow --- src-tauri/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c6eb0e56..7ef943ed 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -25,7 +25,7 @@ tauri-build = { version = "1.5.0", features = [] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } tauri = { version = "1.5.2", features = [ "os-all", "clipboard-write-text", "global-shortcut-all", "dialog-open", "test"] } -sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls" ,"sqlite", "postgres", "mysql", "time"] } +sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "sqlite", "postgres", "mysql", "time"] } uuid = {version = "1.6.1",features = ["v4", "fast-rng", "macro-diagnostics"] } tokio = { version = "1", features = ["full"] } time = "0.3.30"