Add dependency rust-crypto

This commit is contained in:
Matthias Beyer 2016-04-16 14:26:33 +02:00
parent fdb03666b8
commit 781498832b
2 changed files with 2 additions and 0 deletions

View file

@ -8,6 +8,7 @@ log = "0.3.4"
toml = "0.1.27" toml = "0.1.27"
semver = "0.2" semver = "0.2"
url = "0.5.5" url = "0.5.5"
rust-crypto = "0.2.35"
[dependencies.libimagstore] [dependencies.libimagstore]
path = "../libimagstore" path = "../libimagstore"

View file

@ -2,6 +2,7 @@
extern crate toml; extern crate toml;
extern crate semver; extern crate semver;
extern crate url; extern crate url;
extern crate crypto;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;