From b0db71ec6f30d35859bc004078544eca2d6b0b0b Mon Sep 17 00:00:00 2001 From: LOG1997 <2694233102@qq.com> Date: Tue, 9 Dec 2025 20:24:14 +0800 Subject: [PATCH] =?UTF-8?q?fix(tauri):=20=E6=9B=B4=E6=96=B0=20Cargo.toml?= =?UTF-8?q?=20=E9=85=8D=E7=BD=AE=E6=A0=BC=E5=BC=8F=20#94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src-tauri/Cargo.toml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ff361ac..fc3528c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -2,7 +2,7 @@ name = "app" version = "0.1.0" description = "A Tauri App" -authors = ["you"] +authors = [ "you" ] license = "" repository = "" edition = "2021" @@ -12,14 +12,18 @@ rust-version = "1.77.2" [lib] name = "app_lib" -crate-type = ["staticlib", "cdylib", "rlib"] +crate-type = [ + "staticlib", + "cdylib", + "rlib" +] [build-dependencies] tauri-build = { version = "2.5.3", features = [] } [dependencies] serde_json = "1.0" -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0", features = [ "derive" ] } log = "0.4" -tauri = { version = "2.9.4", features = ["devtools"] } +tauri = { version = "2.9.4", features = [] } tauri-plugin-log = "2"