diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-11T11·24+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-11T11·24+0200 |
commit | 405e6340f86b5806e865c570e3afc28a1416cf34 (patch) | |
tree | c9de70e830f95e6ea28950c8ec9d9a52108c06fd /src/main.rs | |
parent | 18ba3eba3c1ea53a22e824be57ad4c32e9c2564e (diff) |
chore(cargo): Add md5 crate dependency
Required for Gravatar.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 434bd40f3c67..a3ad3643044d 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; |