Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 62 additions & 53 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tauri-plugin-dialog = "2"
# Native macOS window materials (Liquid Glass / vibrancy). macOS-only; the app
# ships for Apple Silicon, but the cfg keeps non-macOS builds honest.
[target."cfg(target_os = \"macos\")".dependencies]
window-vibrancy = "0.6"
window-vibrancy = "0.7"

# Smaller, faster release binaries (Tauri's recommended profile). Lives in the
# workspace root manifest so it applies to the whole workspace.
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "InstantNotes core: domain logic, persistence, search. No UI, no T
edition = "2021"

[dependencies]
rusqlite = { version = "0.32", features = ["bundled"] }
rusqlite = { version = "0.40", features = ["bundled"] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
thiserror = "2"
Expand Down
Loading