mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
update: to tauri 2.0 stable
This commit is contained in:
parent
5cdd5c5efd
commit
f1813c8886
3 changed files with 279 additions and 302 deletions
18
package.json
18
package.json
|
@ -10,17 +10,17 @@
|
||||||
"postinstall": "nuxt prepare"
|
"postinstall": "nuxt prepare"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tauri-apps/api": "^2.0.0-rc.4",
|
"@tauri-apps/api": "^2.0.1",
|
||||||
"@tauri-apps/cli": "^2.0.0-rc.10",
|
"@tauri-apps/cli": "^2.0.1",
|
||||||
"@tauri-apps/plugin-autostart": "2.0.0-rc.1",
|
"@tauri-apps/plugin-autostart": "2.0.0",
|
||||||
"@tauri-apps/plugin-fs": "2.0.0-rc.2",
|
"@tauri-apps/plugin-fs": "2.0.0",
|
||||||
"@tauri-apps/plugin-os": "2.0.0-rc.1",
|
"@tauri-apps/plugin-os": "2.0.0",
|
||||||
"@tauri-apps/plugin-sql": "2.0.0-rc.1",
|
"@tauri-apps/plugin-sql": "2.0.0",
|
||||||
"nuxt": "3.13.0",
|
"nuxt": "3.13.2",
|
||||||
"nuxt-build-cache": "0.1.1",
|
"nuxt-build-cache": "0.1.1",
|
||||||
"overlayscrollbars": "2.10.0",
|
"overlayscrollbars": "2.10.0",
|
||||||
"overlayscrollbars-vue": "0.5.9",
|
"overlayscrollbars-vue": "0.5.9",
|
||||||
"sass": "1.77.8",
|
"sass": "1.79.4",
|
||||||
"vue": "3.4.38"
|
"vue": "3.5.11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
530
src-tauri/Cargo.lock
generated
530
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -7,33 +7,34 @@ edition = "2021"
|
||||||
rust-version = "1.70"
|
rust-version = "1.70"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "2.0.0-rc.6", features = [] }
|
tauri-build = { version = "2.0.1", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tauri = { version = "2.0.0-rc.6", features = [
|
tauri = { version = "2.0.1", features = [
|
||||||
"macos-private-api",
|
"macos-private-api",
|
||||||
"tray-icon",
|
"tray-icon",
|
||||||
"image-png",
|
"image-png",
|
||||||
] }
|
] }
|
||||||
tauri-plugin-sql = { version = "2.0.0-rc.0", features = ["sqlite"] }
|
tauri-plugin-sql = { version = "2.0.1", features = ["sqlite"] }
|
||||||
tauri-plugin-autostart = "2.0.0-rc.0"
|
tauri-plugin-autostart = "2.0.1"
|
||||||
tauri-plugin-os = "2.0.0-rc.0"
|
tauri-plugin-os = "2.0.1"
|
||||||
tauri-plugin-updater = "2.0.0-rc.1"
|
tauri-plugin-updater = "2.0.2"
|
||||||
tauri-plugin-dialog = "2.0.0-rc.0"
|
tauri-plugin-dialog = "2.0.1"
|
||||||
tauri-plugin-fs = "2.0.0-rc.0"
|
tauri-plugin-fs = "2.0.1"
|
||||||
tauri-plugin-clipboard = "2.1.6"
|
tauri-plugin-clipboard = "2.1.9"
|
||||||
tauri-plugin-prevent-default = "0.4.0"
|
tauri-plugin-prevent-default = "0.6.1"
|
||||||
sqlx = { version = "0.8.1", features = ["runtime-tokio-native-tls", "sqlite"] }
|
tauri-plugin-global-shortcut = "2.0.1"
|
||||||
serde = { version = "1.0.209", features = ["derive"] }
|
sqlx = { version = "0.8.2", features = ["runtime-tokio-native-tls", "sqlite"] }
|
||||||
|
serde = { version = "1.0.210", features = ["derive"] }
|
||||||
tokio = { version = "1.40.0", features = ["full"] }
|
tokio = { version = "1.40.0", features = ["full"] }
|
||||||
serde_json = "1.0.127"
|
serde_json = "1.0.128"
|
||||||
rdev = "0.5.3"
|
rdev = "0.5.3"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
image = "0.25.1"
|
image = "0.25.2"
|
||||||
reqwest = { version = "0.12.7", features = ["blocking"] }
|
reqwest = { version = "0.12.8", features = ["blocking"] }
|
||||||
url = "2.5.2"
|
url = "2.5.2"
|
||||||
regex = "1"
|
regex = "1.11.0"
|
||||||
sha2 = "0.10.6"
|
sha2 = "0.10.6"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
time = "0.3"
|
time = "0.3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue