This commit is contained in:
949036910@qq.com
2026-05-30 12:46:13 +08:00
parent 58240c3d76
commit 53d0a6eb5f
11 changed files with 536 additions and 24 deletions

View File

@@ -1,14 +1,19 @@
[package]
name = "tauri-app"
version = "0.1.0"
version = "0.1.1"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
default-run = "tauri-app"
[lib]
name = "tauri_app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[[bin]]
name = "updater"
path = "src/bin/updater/main.rs"
[build-dependencies]
tauri-build = { version = "2", features = [] }
@@ -86,3 +91,9 @@ mac_address = "1.1"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
] }