Trying to fix ubuntu sqlite3 issue.

This commit is contained in:
Dessalines 2018-12-02 12:32:14 -07:00
parent caad7b5643
commit 848c41f5f6
2 changed files with 6 additions and 2 deletions

View File

@ -565,6 +565,7 @@ name = "libsqlite3-sys"
version = "0.10.0" version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ 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)", "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)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
] ]

View File

@ -8,5 +8,8 @@ actix-web = "*"
serde = "*" serde = "*"
serde_json = "*" serde_json = "*"
serde_derive = "*" serde_derive = "*"
rusqlite = "*"
time = "*" time = "*"
[dependencies.rusqlite]
version = "0.15.0"
features = ["bundled"]