summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2020-05-26 19:46:20 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2020-05-26 19:46:20 -0400
commit433c5fa1c56bee5a9032380a3c9a339869a47d16 (patch)
treec6ed8b5722b969abbf3239450466d4933dac039d /Cargo.toml
parenta932889c9a01537a53e9c587e13e25843744b6f0 (diff)
Implement initial templating.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9a47e7d..c17f0ef 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,11 +17,15 @@ rusqlite = "0.21.0"
# 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"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
+[dependencies.rocket_contrib]
+version = "0.4.4"
+default-features = false
+features = ["handlebars_templates", "json", "serve"]
+
[[bin]]
name = "birka-cli"
path = "src/birka-cli.rs"