From 848c41f5f6dc83b5142eaf155f4f5fc40ce7a8d6 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sun, 2 Dec 2018 12:32:14 -0700 Subject: [PATCH] Trying to fix ubuntu sqlite3 issue. --- server/service/Cargo.lock | 1 + server/service/Cargo.toml | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/server/service/Cargo.lock b/server/service/Cargo.lock index b75bc61..6e8d7ec 100644 --- a/server/service/Cargo.lock +++ b/server/service/Cargo.lock @@ -565,6 +565,7 @@ name = "libsqlite3-sys" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/server/service/Cargo.toml b/server/service/Cargo.toml index 2ccea24..8296c32 100644 --- a/server/service/Cargo.toml +++ b/server/service/Cargo.toml @@ -8,5 +8,8 @@ actix-web = "*" serde = "*" serde_json = "*" serde_derive = "*" -rusqlite = "*" -time = "*" \ No newline at end of file +time = "*" + +[dependencies.rusqlite] +version = "0.15.0" +features = ["bundled"] \ No newline at end of file