From 0479a89905c7b08379e253b044863c27cb60fa07 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 16 Jan 2026 21:59:30 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E4=B8=BA=20tauri-shell=20=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=9B=B8=E5=85=B3=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新项目根目录名称为 tauri-shell 并调整相关结构说明 - 移除旧的 tauri-demo 包并添加新的 tauri-shell 包以支持 shell 功能 - 修改项目名称为 tauri-shell - 修改应用名称和标识符为 tauri-shell --- AGENTS.md | 2 +- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 2 +- tauri.conf.json | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index e8a292d..3048eb7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -79,7 +79,7 @@ cargo clean ## 项目结构 ``` -tauri-demo/ +tauri-shell/ ├── src/ │ ├── main.rs # 入口文件 (仅调用 lib::run) │ ├── lib.rs # 核心应用逻辑 (注册插件、命令、状态) diff --git a/Cargo.lock b/Cargo.lock index aa4bc65..351376a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3605,18 +3605,6 @@ dependencies = [ "walkdir", ] -[[package]] -name = "tauri-demo" -version = "0.1.0" -dependencies = [ - "serde", - "tauri", - "tauri-build", - "tauri-plugin-opener", - "tauri-plugin-shell", - "tokio", -] - [[package]] name = "tauri-macros" version = "2.5.2" @@ -3743,6 +3731,18 @@ dependencies = [ "wry", ] +[[package]] +name = "tauri-shell" +version = "0.1.0" +dependencies = [ + "serde", + "tauri", + "tauri-build", + "tauri-plugin-opener", + "tauri-plugin-shell", + "tokio", +] + [[package]] name = "tauri-utils" version = "2.8.1" diff --git a/Cargo.toml b/Cargo.toml index e403a5c..2bdbf67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "tauri-demo" +name = "tauri-shell" version = "0.1.0" description = "A Tauri App" authors = ["you"] diff --git a/tauri.conf.json b/tauri.conf.json index 3e59562..b8ca6d9 100644 --- a/tauri.conf.json +++ b/tauri.conf.json @@ -1,8 +1,8 @@ { "$schema": "https://schema.tauri.app/config/2", - "productName": "tauri-demo", + "productName": "tauri-shell", "version": "0.1.0", - "identifier": "com.imbytecat.tauri-demo", + "identifier": "com.imbytecat.tauri-shell", "app": { "withGlobalTauri": true, "windows": [],