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": [],