From 2ff294724adc16aa65321d5702522fe16dca9f26 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 13 Mar 2026 13:09:14 +0000 Subject: [PATCH] Use bundled sqlite to avoid cross-compilation problems --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 41bd3b8..db33e7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,3 +37,6 @@ matrix-sdk = { version = "0.16.0", default-features = false, features = [ pulldown-cmark = { version = "0.13.1", default-features = false, features = [ "html", ] } + +# Force bundled SQLite so static musl builds don't need a system libsqlite3 +libsqlite3-sys = { version = "*", features = ["bundled"] }