Fix Rust lifetime issue, add gitignore for build artifacts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 13:45:33 -05:00
parent c72d721e8b
commit a776c0c73c
3 changed files with 14 additions and 1 deletions
+7
View File
@@ -17,3 +17,10 @@ kjvstudy_org/verse_collections.py
*.backup
*.json
.coverage
# Desktop app build artifacts
sidecar/
*.spec
src-tauri/target/
src-tauri/Cargo.lock
src-tauri/gen/
+6
View File
@@ -0,0 +1,6 @@
# Rust build artifacts
target/
Cargo.lock
# Generated by Tauri during build
gen/
+1 -1
View File
@@ -140,7 +140,7 @@ fn main() {
println!("Shutting down server...");
let _ = child.kill();
let _ = child.wait();
}
};
}
});
}