mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
fix(client): align tauri-plugin-dialog crate with its npm package
`npm run tauri build` refused to start: Tauri rejects a Rust crate and its npm counterpart on different minor versions, and the pair had drifted to tauri-plugin-dialog 2.6.0 vs @tauri-apps/plugin-dialog 2.7.2. Cargo.toml already requires "2", which permits 2.7.2 -- only Cargo.lock was stale, so this is a lockfile-only change: one package moved, the other 162 dependencies untouched. The npm side was bumped previously without the Rust lockfile following. Not caught by CI because the client bundle is only built in release.yml, and Actions has been failing since 2026-07-24 on exhausted private minutes. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Generated
+3
-3
@@ -2110,7 +2110,7 @@ dependencies = [
|
||||
"js-sys",
|
||||
"log",
|
||||
"wasm-bindgen",
|
||||
"windows-core 0.61.2",
|
||||
"windows-core 0.58.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -5089,9 +5089,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-plugin-dialog"
|
||||
version = "2.6.0"
|
||||
version = "2.7.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b"
|
||||
checksum = "b2d3c1dbe38037e7f590cdf2492594d5ceebe031e7bc7e827509b22a999d2940"
|
||||
dependencies = [
|
||||
"log",
|
||||
"raw-window-handle",
|
||||
|
||||
Reference in New Issue
Block a user