about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-11T11·24+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-11T11·24+0200
commit405e6340f86b5806e865c570e3afc28a1416cf34 (patch)
treec9de70e830f95e6ea28950c8ec9d9a52108c06fd /src/main.rs
parent18ba3eba3c1ea53a22e824be57ad4c32e9c2564e (diff)
chore(cargo): Add md5 crate dependency
Required for Gravatar.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 434bd40f3c..a3ad364304 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,9 +16,11 @@ extern crate failure;
 extern crate actix;
 extern crate actix_web;
 extern crate chrono;
+extern crate comrak;
 extern crate env_logger;
 extern crate futures;
 extern crate hyper;
+extern crate md5;
 extern crate r2d2;
 extern crate rand;
 extern crate reqwest;