Use bundled sqlite

This commit is contained in:
Ellie Huxtable 2020-10-05 01:12:22 +01:00
parent 60afafd241
commit 4783b77a6a
2 changed files with 13 additions and 3 deletions

9
Cargo.lock generated
View File

@ -70,6 +70,12 @@ dependencies = [
"constant_time_eq",
]
[[package]]
name = "cc"
version = "1.0.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef611cc68ff783f18535d77ddd080185275713d852c4f5cbb6122c462a7a825c"
[[package]]
name = "cfg-if"
version = "0.1.10"
@ -230,6 +236,7 @@ version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a245984b1b06c291f46e27ebda9f369a94a1ab8461d0e845e23f9ced01f5db"
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
@ -384,7 +391,7 @@ dependencies = [
[[package]]
name = "shync"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"chrono",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "shync"
version = "0.1.0"
version = "0.1.1"
authors = ["Ellie Huxtable <e@elm.sh>"]
edition = "2018"
license = "MIT"
@ -15,4 +15,7 @@ clap = "2.33.3"
chrono = "0.4.19"
eyre = "0.6.1"
shellexpand = "2.0.0"
rusqlite = "0.24.0"
[dependencies.rusqlite]
version = "0.24.0"
features = ["bundled"]