onyx-tasks/apps/tauri
Claude 6abe95692e
perf(tauri): use HashSet for cascade-delete dedup
Descendant walking in delete_task called Vec::contains in the inner
loop, making the traversal O(n^2) in the number of tasks. Swap the
visited set to HashSet so membership tests are O(1); HashSet::insert
also folds the contains-check and record-new steps into one call.
2026-04-20 07:34:52 +00:00
..
src style(sync): replace stray var with const in restartSyncInterval 2026-04-19 07:13:47 +00:00
src-tauri perf(tauri): use HashSet for cascade-delete dedup 2026-04-20 07:34:52 +00:00
tauri-plugin-credentials Add tauri-plugin-credentials for cross-platform credential storage 2026-04-05 17:29:51 -07:00
.gitignore tauri and flutter guis 2026-03-17 09:38:53 -07:00
index.html Add safe area insets for mobile status bar and navigation 2026-04-05 17:29:54 -07:00
package-lock.json Add Vitest suite covering the smoke-test fixes 2026-04-17 14:33:12 +00:00
package.json Add Vitest suite covering the smoke-test fixes 2026-04-17 14:33:12 +00:00
svelte.config.js tauri and flutter guis 2026-03-17 09:38:53 -07:00
tsconfig.json tauri and flutter guis 2026-03-17 09:38:53 -07:00
vite.config.ts Add Vitest suite covering the smoke-test fixes 2026-04-17 14:33:12 +00:00