Add initial dependencies
This commit is contained in:
parent
fcbc020083
commit
cb17e6a4c5
2 changed files with 17 additions and 3 deletions
|
@ -4,3 +4,12 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
clap = "1.5.5"
|
||||||
|
itertools = "0.4.7"
|
||||||
|
log = "0.3.4"
|
||||||
|
regex = "0.1.48"
|
||||||
|
toml = "0.1.27"
|
||||||
|
|
||||||
|
[dependencies.libimagstore]
|
||||||
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
#[test]
|
#[macro_use] extern crate log;
|
||||||
fn it_works() {
|
|
||||||
}
|
extern crate itertools;
|
||||||
|
extern crate regex;
|
||||||
|
extern crate toml;
|
||||||
|
|
||||||
|
extern crate libimagstore;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue