From eb2b8e818cdd296d30dc57f3f51eaf7550cfe02d Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 14 Jul 2022 21:52:18 +0200 Subject: [PATCH] Bundle sqlite --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index fe10969..ab221c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,6 +577,7 @@ version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14" dependencies = [ + "cc", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index c2fdf49..d4a0434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ log = { version = "0.4.17", features = ["std"] } palette = { version = "0.6.0", default-features = false, features = ["std"] } parking_lot = "0.12.1" rand = "0.8.5" -rusqlite = { version = "0.27.0", features = ["chrono"] } +rusqlite = { version = "0.27.0", features = ["bundled", "chrono"] } serde = { version = "1.0.138", features = ["derive"] } serde_json = "1.0.82" thiserror = "1.0.31"