aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock9
-rw-r--r--Cargo.toml9
2 files changed, 15 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 38f9cd77..0cad5c25 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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"
@@ -248,6 +254,7 @@ version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a245984b1b06c291f46e27ebda9f369a94a1ab8461d0e845e23f9ced01f5db"
dependencies = [
+ "cc",
"pkg-config",
"vcpkg",
]
@@ -444,7 +451,7 @@ dependencies = [
[[package]]
name = "shync"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"chrono",
"directories",
diff --git a/Cargo.toml b/Cargo.toml
index 6c32eec5..49850377 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,10 @@
[package]
name = "shync"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Ellie Huxtable <e@elm.sh>"]
edition = "2018"
+license = "MIT"
+description = "shync - sync your shell history"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -12,6 +14,9 @@ pretty_env_logger = "0.4"
chrono = "0.4.19"
eyre = "0.6.1"
shellexpand = "2.0.0"
-rusqlite = "0.24.0"
structopt = "0.3.15"
directories = "3.0.1"
+
+[dependencies.rusqlite]
+version = "0.24.0"
+features = ["bundled"]