Files
game_install_tools/src-tauri/Cargo.toml
Chaos a09f4a7e6e feat(installer): 实现游戏安装程序页面
- 添加选择安装目录功能,支持 Windows 默认路径
- 集成 Rust 后端 install_game 命令
- 实现安装进度提示与结果反馈- 移除旧网络工具页面与关于页面
- 更新全局样式配置,引入 daisyUI 主题
- 调整窗口控制栏布局与样式
- 添加 Tauri 插件权限配置 (fs, dialog)
- 升级依赖库并添加系统组件支持
2025-11-11 16:16:37 +08:00

29 lines
620 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0.228" }
log = "0.4"
tauri = { version = "2.9.2", features = [] }
tauri-plugin-log = "2"
network-interface = "2.0.3"
tauri-plugin-fs = "2"
tauri-plugin-dialog = "2"