终于调通了

This commit is contained in:
Tw93
2023-04-05 17:01:36 +08:00
parent 9a55e6ae20
commit 6bbecdb19e
8 changed files with 1074 additions and 460 deletions

View File

@@ -1,10 +1,10 @@
[package]
name = "app"
version = "0.1.0"
description = "Pake 打包工具"
description = "🤱🏻 Turn any webpage into a desktop app with Rust."
authors = ["Tw93"]
license = ""
repository = ""
license = "MIT"
repository = "https://github.com/tw93/Pake"
default-run = "app"
edition = "2021"
rust-version = "1.61.0"
@@ -17,11 +17,10 @@ tauri-build = { version = "1.2.1", features = [] }
[dependencies]
serde_json = "1.0.89"
serde = { version = "1.0.150", features = ["derive"] }
tauri = { version = "1.2.4", features = ["system-tray"] }
tauri = { version = "1.2.1", features = ["api-all", "devtools", "system-tray"] }
image = "0.24.5"
home = "0.5"
tauri-utils = "1.2.1"
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/tauri-plugin-window-state", branch = "dev"}
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
[features]
# by default Tauri runs in production mode
@@ -30,5 +29,3 @@ default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
# Enable DevTools for debugging.
devtools = []