Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src-tauri/Cargo.lock

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

1 change: 1 addition & 0 deletions src-tauri/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ ignore = [
{ id = "RUSTSEC-2024-0418", reason = "Tauri v2 GTK3 dependency (unmaintained)" },
{ id = "RUSTSEC-2024-0419", reason = "Tauri v2 GTK3 dependency (unmaintained)" },
{ id = "RUSTSEC-2024-0420", reason = "Tauri v2 GTK3 dependency (unmaintained)" },
{ id = "RUSTSEC-2025-0052", reason = "Discontinued, but dark-light v2.0.0 needs it" },
]
# If this is true, then cargo deny will use the git executable to fetch advisory database.
# If this is false, then it uses a built-in git library.
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/database/models/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl Settings {
.await?;
} else {
debug!("Found previous app settings, using them.");
debug!("Found settings: {:?}", current_config);
debug!("Found settings: {current_config:?}");
}
Ok(())
}
Expand Down