diff options
| author | Ellie Huxtable <e@elm.sh> | 2020-10-05 01:12:22 +0100 |
|---|---|---|
| committer | Ellie Huxtable <e@elm.sh> | 2020-10-05 01:13:27 +0100 |
| commit | 4783b77a6a5e9bb0156428bca1f8b765e1bb3357 (patch) | |
| tree | cd1100a2e1dd18b2d4a5886b9066527ee39204bb | |
| parent | Update Cargo.toml (diff) | |
| download | atuin-4783b77a6a5e9bb0156428bca1f8b765e1bb3357.zip | |
Use bundled sqlite
| -rw-r--r-- | Cargo.lock | 9 | ||||
| -rw-r--r-- | Cargo.toml | 7 |
2 files changed, 13 insertions, 3 deletions
@@ -71,6 +71,12 @@ dependencies = [ ] [[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" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -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", @@ -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"] |
