1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 02:05:16 +03:00
aports/community/atuin/sqlx-use-system-libsqlite.patch
2022-11-19 00:25:34 +00:00

15 lines
450 B
Diff

From: Jakub Jirutka <jakub@jirutka.cz>
Date: Fri, 13 May 2022 01:44:00 +0200
Subject: [PATCH] Build sqlx-core with system libsqlite3
--- a/vendor/sqlx/sqlx-core/Cargo.toml
+++ b/vendor/sqlx/sqlx-core/Cargo.toml
@@ -138,6 +138,6 @@
libsqlite3-sys = { version = "0.24.1", optional = true, default-features = false, features = [
"pkg-config",
"vcpkg",
- "bundled",
- "unlock_notify"
+ "unlock_notify",
+ "buildtime_bindgen"
] }