- 引入GAME_CONFIG配置文件统一管理游戏信息 - 安装页面支持记录安装路径到localStorage - 成功页面增加创建桌面快捷方式选项 - 实现调用系统资源管理器打开游戏目录功能 - 集成Windows COM组件创建快捷方式的能力 - 更新UI界面展示多语言标题和版本信息 - 升级daisyui依赖至5.5.2版本- 调整窗口标题和产品名称为"游戏安装工具 - NoPJ"
36 lines
809 B
TOML
36 lines
809 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"
|
|
thiserror = "2.0.17"
|
|
zip = "4.2.0"
|
|
async-runtime = "0.0.0"
|
|
tokio = { version = "1.48.0", features = ["time"] }
|
|
tauri-plugin-shell = "2.3.3"
|
|
tauri-plugin-opener = "2.5.2"
|
|
windows = "0.61.3"
|