mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-06-16 03:47:33 +02:00
chore(deps): update tauri and related dependencies in Cargo.toml and Cargo.lock, switch build commands to use bun
This commit is contained in:
parent
97c023df91
commit
30d6eb60db
3 changed files with 7619 additions and 7832 deletions
15405
src-tauri/Cargo.lock
generated
15405
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -7,52 +7,52 @@ edition = "2021"
|
||||||
rust-version = "1.70"
|
rust-version = "1.70"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "2.0.6", features = [] }
|
tauri-build = { version = "2.2.0", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tauri = { version = "2.3.1", features = [
|
tauri = { version = "2.5.1", features = [
|
||||||
"macos-private-api",
|
"macos-private-api",
|
||||||
"tray-icon",
|
"tray-icon",
|
||||||
"image-png",
|
"image-png",
|
||||||
] }
|
] }
|
||||||
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
|
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
|
||||||
tauri-plugin-autostart = "2.2.0"
|
tauri-plugin-autostart = "2.3.0"
|
||||||
tauri-plugin-os = "2.2.1"
|
tauri-plugin-os = "2.2.1"
|
||||||
tauri-plugin-updater = "2.6.0"
|
tauri-plugin-updater = "2.7.1"
|
||||||
tauri-plugin-dialog = "2.2.0"
|
tauri-plugin-dialog = "2.2.2"
|
||||||
tauri-plugin-fs = "2.2.0"
|
tauri-plugin-fs = "2.3.0"
|
||||||
tauri-plugin-clipboard = "2.1.11"
|
tauri-plugin-clipboard = "2.1.11"
|
||||||
tauri-plugin-prevent-default = "1.2.1"
|
tauri-plugin-prevent-default = "2.1.1"
|
||||||
tauri-plugin-global-shortcut = "2.2.0"
|
tauri-plugin-global-shortcut = "2.2.1"
|
||||||
tauri-plugin-aptabase = { git = "https://github.com/aptabase/tauri-plugin-aptabase", branch = "v2" }
|
tauri-plugin-aptabase = "1.0.0"
|
||||||
sqlx = { version = "0.8.3", features = [
|
sqlx = { version = "0.8.6", features = [
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
"sqlite",
|
"sqlite",
|
||||||
"chrono",
|
"chrono",
|
||||||
] }
|
] }
|
||||||
serde = { version = "1.0.219", features = ["derive"] }
|
serde = { version = "1.0.219", features = ["derive"] }
|
||||||
tokio = { version = "1.44.1", features = ["full"] }
|
tokio = { version = "1.45.1", features = ["full"] }
|
||||||
serde_json = "1.0.140"
|
serde_json = "1.0.140"
|
||||||
rdev = "0.5.3"
|
rdev = "0.5.3"
|
||||||
rand = "0.9.0"
|
rand = "0.9.1"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
image = "0.25.5"
|
image = "0.25.6"
|
||||||
reqwest = { version = "0.12.14", features = ["json", "blocking"] }
|
reqwest = { version = "0.12.19", features = ["json", "blocking"] }
|
||||||
url = "2.5.4"
|
url = "2.5.4"
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
sha2 = "0.10.8"
|
sha2 = "0.10.9"
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
time = "0.3.39"
|
time = "0.3.41"
|
||||||
global-hotkey = "0.6.4"
|
global-hotkey = "0.7.0"
|
||||||
chrono = { version = "0.4.40", features = ["serde"] }
|
chrono = { version = "0.4.41", features = ["serde"] }
|
||||||
log = { version = "0.4.26", features = ["std"] }
|
log = { version = "0.4.27", features = ["std"] }
|
||||||
uuid = "1.16.0"
|
uuid = { version = "1.17.0", features = ["v4"]}
|
||||||
include_dir = "0.7.4"
|
include_dir = "0.7.4"
|
||||||
# hyperpolyglot = { git = "https://github.com/0pandadev/hyperpolyglot" }
|
# hyperpolyglot = { git = "https://github.com/0pandadev/hyperpolyglot" }
|
||||||
applications = { git = "https://github.com/HuakunShen/applications-rs", branch = "fix/win-app-detection" }
|
applications = { git = "https://github.com/HuakunShen/applications-rs", branch = "fix/win-app-detection" }
|
||||||
glob = "0.3.2"
|
glob = "0.3.2"
|
||||||
meta_fetcher = "0.1.1"
|
meta_fetcher = "0.1.1"
|
||||||
parking_lot = "0.12.3"
|
parking_lot = "0.12.4"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
custom-protocol = ["tauri/custom-protocol"]
|
custom-protocol = ["tauri/custom-protocol"]
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../dist",
|
"frontendDist": "../dist",
|
||||||
"devUrl": "http://localhost:3000",
|
"devUrl": "http://localhost:3000",
|
||||||
"beforeDevCommand": "pnpm nuxt dev",
|
"beforeDevCommand": "bun nuxt dev",
|
||||||
"beforeBuildCommand": "pnpm nuxt generate"
|
"beforeBuildCommand": "bun nuxt generate"
|
||||||
},
|
},
|
||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue