commit f3eeaea46ba3191ef857dc59d4962536c9ed059d
parent ee55b76e6d3aafe8abf30c840a3c4c5d1d20b634
Author: Jackson G. Kaindume <kaindume@kwatafana.org>
Date: Thu, 22 Sep 2022 15:57:44 +0200
[phora] use bundled sqlite
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/phora/Cargo.lock b/phora/Cargo.lock
@@ -250,6 +250,7 @@ version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f0455f2c1bc9a7caa792907026e469c1d91761fb0ea37cbb16427c77280cf35"
dependencies = [
+ "cc",
"pkg-config",
"vcpkg",
]
diff --git a/phora/Cargo.toml b/phora/Cargo.toml
@@ -10,7 +10,6 @@ chacha20poly1305 = "0.9.0"
base64 = "0.13.0"
scrypt = "0.10.0"
serde = { version = "1.0.144", features = ["derive"] }
-rusqlite = { version = "0.28.0", optional = true }
-
+rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
[features]
sqlite = ["dep:rusqlite"]
\ No newline at end of file