summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2020-05-25 14:26:00 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2020-05-25 18:04:31 -0400
commitc69ed1e0bf7567883445e917414a32f6815addb6 (patch)
tree369c7c24e5f456b2d3d57156d350c48b742c701a /Cargo.toml
parentd59a92b04a398b274fbeda0de6d8e64c718837dd (diff)
Implement initial thumbnail creation.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 13 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0b4073b..629f2e3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,17 @@ anyhow = "1.0.31"
base64 = "0.12.1"
blake2 = "0.8"
dirs = "2.0.2"
+rusqlite = "0.21.0"
-[dependencies.rusqlite]
-version = "0.21.0"
-# features = ["bundled"]
+# Until RFC #2887 is merged, image and rocket are deps of the CLI tool as well.
+image = "0.23.4"
+rocket = "0.4.4"
+rocket_contrib = "0.4.4"
+
+[[bin]]
+name = "birka-cli"
+path = "src/birka-cli.rs"
+
+[[bin]]
+name = "birka"
+path = "src/main.rs"