chore: set Rust MSRV to 1.88

This commit is contained in:
Yuri Karamian
2026-08-17 21:15:11 +02:00
parent dd748776b2
commit 1bd4cd8138
6 changed files with 22 additions and 13 deletions
+1 -1
View File
@@ -1691,7 +1691,7 @@ pub fn get_vault_stats(state: State<'_, AppState>) -> Result<VaultStats, String>
.filter(|p| {
// attachments under .helixnotes count; nothing else in .helixnotes or .trash does
let s = p.to_string_lossy();
!(s.contains("/.helixnotes/") && !s.contains("/.helixnotes/attachments/"))
(!s.contains("/.helixnotes/") || s.contains("/.helixnotes/attachments/"))
&& !s.contains("/.trash/")
})
.collect();