build, msvc: Disable default features of the sqlite3 package

At the current builtin baseline, the only default feature is `json1`,
which enables SQLite's JSON functionality. Bitcoin Core does not use
it, and the depends build explicitly omits it with `-DSQLITE_OMIT_JSON`.
This commit is contained in:
Hennadii Stepanov
2026-08-10 23:26:01 +01:00
parent a31425610a
commit e2bf51543a

View File

@@ -39,7 +39,10 @@
"wallet": {
"description": "Enable wallet (SQLite)",
"dependencies": [
"sqlite3"
{
"name": "sqlite3",
"default-features": false
}
]
},
"zeromq": {