ladybird/vcpkg.json
Timothy Flynn 65ddd0553b Meta+LibWebView: Install and link sqlite3 with vcpkg
We will use sqlite3 as a replacement for LibSQL. Using a tried-and-true
database will allow us to avoid maintaining our an incomplete, non-ACID,
and less performant implementation. It also means we do not have to
launch and manage the singleton SQLServer process.
2024-06-06 11:27:03 -04:00

12 lines
127 B
JSON

{
"dependencies": [
"sqlite3"
],
"overrides": [
{
"name": "sqlite3",
"version": "3.45.3"
}
]
}