- 添加进度条组件和相关状态管理 - 实现 Rust 后端解压过程的实时进度上报 - 增加安装路径中文字符校验 -优化日志显示支持时间戳开关- 引入 zip 解压库及异步运行时依赖 - 修复安装流程中的事件通信机制 - 调整 UI 布局适配新增进度条显示
33 lines
731 B
TOML
33 lines
731 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"] }
|