Commit 096c48c
Fix Windows CI build by enabling bundled SQLite
The Windows CI was failing with "cannot open input file 'sqlite3.lib'"
because rusqlite (used by tor-dirmgr in Arti) was trying to link against
a system SQLite installation that doesn't exist in the CI environment.
Changes:
- Add rusqlite patch with bundled feature to force compilation from source
- Remove incorrect LIBSQLITE3_SYS_BUNDLING/STATIC env vars that don't work
The bundled feature uses the cc crate to compile SQLite from source,
eliminating the need for system-installed sqlite3.lib on Windows.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent f00bea3 commit 096c48c
2 files changed
+1
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
5 | | - | |
6 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
| 128 | + | |
0 commit comments