Skip to content

Commit d53d64a

Browse files
committed
chore: update project dependencies and lock files
1 parent 12b8f9a commit d53d64a

File tree

4 files changed

+132
-18
lines changed

4 files changed

+132
-18
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ logs
2525
bun.lockb
2626
.gitignore
2727
.vscode
28+
bun.lock

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
},
1212
"dependencies": {
1313
"@tauri-apps/api": "2.2.0",
14-
"@tauri-apps/cli": "2.2.5",
14+
"@tauri-apps/cli": "2.2.7",
1515
"@tauri-apps/plugin-autostart": "2.2.0",
1616
"@tauri-apps/plugin-os": "2.2.0",
17-
"nuxt": "3.15.2",
17+
"nuxt": "3.15.4",
1818
"overlayscrollbars": "2.10.1",
1919
"overlayscrollbars-vue": "0.5.9",
2020
"sass-embedded": "1.83.4",

src-tauri/Cargo.lock

+125-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ rust-version = "1.70"
1010
tauri-build = { version = "2.0.5", features = [] }
1111

1212
[dependencies]
13-
tauri = { version = "2.2.3", features = [
13+
tauri = { version = "2.2.5", features = [
1414
"macos-private-api",
1515
"tray-icon",
1616
"image-png"
1717
] }
1818
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
1919
tauri-plugin-autostart = "2.2.0"
2020
tauri-plugin-os = "2.2.0"
21-
tauri-plugin-updater = "2.3.1"
21+
tauri-plugin-updater = "2.4.0"
2222
tauri-plugin-dialog = "2.2.0"
2323
tauri-plugin-fs = "2.2.0"
2424
tauri-plugin-clipboard = "2.1.11"
@@ -28,9 +28,9 @@ tauri-plugin-aptabase = { git = "https://github.com/aptabase/tauri-plugin-aptaba
2828
sqlx = { version = "0.8.3", features = ["runtime-tokio-native-tls", "sqlite", "chrono"] }
2929
serde = { version = "1.0.217", features = ["derive"] }
3030
tokio = { version = "1.43.0", features = ["full"] }
31-
serde_json = "1.0.137"
31+
serde_json = "1.0.138"
3232
rdev = "0.5.3"
33-
rand = "0.8.5"
33+
rand = "0.9.0"
3434
base64 = "0.22.1"
3535
image = "0.25.5"
3636
reqwest = { version = "0.12.12", features = ["json", "blocking"] }

0 commit comments

Comments
 (0)