update to tauri 2.0 stable
This commit is contained in:
parent
99ccf4760d
commit
9e6c6556b7
56
package.json
56
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "fanslysync-desktop",
|
"name": "fanslysync-desktop",
|
||||||
"version": "0.1.4",
|
"version": "0.1.5",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
@ -13,38 +13,38 @@
|
|||||||
"tauri": "tauri"
|
"tauri": "tauri"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sveltejs/adapter-auto": "^3.0.0",
|
"@sveltejs/adapter-auto": "^3.2.5",
|
||||||
"@sveltejs/adapter-static": "^3.0.2",
|
"@sveltejs/adapter-static": "^3.0.5",
|
||||||
"@sveltejs/kit": "^2.0.0",
|
"@sveltejs/kit": "^2.6.1",
|
||||||
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
"@sveltejs/vite-plugin-svelte": "^3.1.2",
|
||||||
"@tauri-apps/cli": "^2.0.0-rc.3",
|
"@tauri-apps/cli": "^2.0.1",
|
||||||
"@types/eslint": "^8.56.7",
|
"@types/eslint": "^9.6.1",
|
||||||
"autoprefixer": "^10.4.19",
|
"autoprefixer": "^10.4.20",
|
||||||
"eslint": "^9.0.0",
|
"eslint": "^9.12.0",
|
||||||
"eslint-config-prettier": "^9.1.0",
|
"eslint-config-prettier": "^9.1.0",
|
||||||
"eslint-plugin-svelte": "^2.36.0",
|
"eslint-plugin-svelte": "^2.44.1",
|
||||||
"globals": "^15.0.0",
|
"globals": "^15.10.0",
|
||||||
"postcss": "^8.4.39",
|
"postcss": "^8.4.47",
|
||||||
"prettier": "^3.1.1",
|
"prettier": "^3.3.3",
|
||||||
"prettier-plugin-svelte": "^3.1.2",
|
"prettier-plugin-svelte": "^3.2.7",
|
||||||
"svelte": "^4.2.7",
|
"svelte": "^4.2.19",
|
||||||
"svelte-check": "^3.6.0",
|
"svelte-check": "^4.0.4",
|
||||||
"tailwindcss": "^3.4.6",
|
"tailwindcss": "^3.4.13",
|
||||||
"tslib": "^2.4.1",
|
"tslib": "^2.7.0",
|
||||||
"typescript": "^5.0.0",
|
"typescript": "^5.6.2",
|
||||||
"typescript-eslint": "^8.0.0-alpha.20",
|
"typescript-eslint": "^8.8.0",
|
||||||
"vite": "^5.0.3"
|
"vite": "^5.4.8"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tauri-apps/api": "^2.0.0-rc.0",
|
"@tauri-apps/api": "^2.0.0-rc.0",
|
||||||
"@tauri-apps/plugin-autostart": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-autostart": "^2.0.0",
|
||||||
"@tauri-apps/plugin-clipboard-manager": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
||||||
"@tauri-apps/plugin-dialog": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-dialog": "^2.0.0",
|
||||||
"@tauri-apps/plugin-log": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-log": "^2.0.0",
|
||||||
"@tauri-apps/plugin-notification": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-notification": "^2.0.0",
|
||||||
"@tauri-apps/plugin-os": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-os": "^2.0.0",
|
||||||
"@tauri-apps/plugin-updater": "^2.0.0-rc.0",
|
"@tauri-apps/plugin-updater": "^2.0.0",
|
||||||
"svelte-french-toast": "^1.2.0"
|
"svelte-french-toast": "^1.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1522
src-tauri/Cargo.lock
generated
1522
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "app"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["SticksDev"]
|
authors = ["SticksDev"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -12,7 +12,7 @@ rust-version = "1.80"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "2.0.0-rc.2", features = [] }
|
tauri-build = { version = "2.0.0", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
@ -23,12 +23,12 @@ reqwest = { version = "0.11.18", features = ["json"] }
|
|||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
tokio = { version = "1.29.1", features = ["full"] }
|
tokio = { version = "1.29.1", features = ["full"] }
|
||||||
tokio-macros = "2.3.0"
|
tokio-macros = "2.3.0"
|
||||||
tauri-plugin-os = { version = "2.0.0-rc" }
|
tauri-plugin-os = { version = "2.0.0" }
|
||||||
tauri-plugin-dialog = { version = "2.0.0-rc" }
|
tauri-plugin-dialog = { version = "2.0.0" }
|
||||||
tauri-plugin-clipboard-manager = { version = "2.0.0-rc" }
|
tauri-plugin-clipboard-manager = { version = "2.0.0" }
|
||||||
tauri-plugin-notification = { version = "2.0.0-rc" }
|
tauri-plugin-notification = { version = "2.0.0" }
|
||||||
tauri-plugin-updater = { version = "2.0.0-rc" }
|
tauri-plugin-updater = { version = "2.0.0" }
|
||||||
tauri-plugin-log = { version = "2.0.0-rc" }
|
tauri-plugin-log = { version = "2.0.0" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
|
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
|
||||||
@ -37,4 +37,4 @@ tauri-plugin-log = { version = "2.0.0-rc" }
|
|||||||
custom-protocol = [ "tauri/custom-protocol" ]
|
custom-protocol = [ "tauri/custom-protocol" ]
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
||||||
tauri-plugin-autostart = "2.0.0-rc.0"
|
tauri-plugin-autostart = "2.0.0"
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user