Add dependencies
This commit is contained in:
parent
b8916c3526
commit
33f02fd776
2 changed files with 4 additions and 0 deletions
|
@ -10,7 +10,9 @@ interactor = "0.1"
|
||||||
lazy_static = "0.1.15"
|
lazy_static = "0.1.15"
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
regex = "0.1"
|
regex = "0.1"
|
||||||
|
toml = "0.2.1"
|
||||||
spinner = "0.4"
|
spinner = "0.4"
|
||||||
|
rustyline = "1.0"
|
||||||
|
|
||||||
[dependencies.libimagstore]
|
[dependencies.libimagstore]
|
||||||
path = "../libimagstore"
|
path = "../libimagstore"
|
||||||
|
|
|
@ -38,6 +38,8 @@ extern crate ansi_term;
|
||||||
#[macro_use] extern crate lazy_static;
|
#[macro_use] extern crate lazy_static;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
extern crate clap;
|
extern crate clap;
|
||||||
|
extern crate toml;
|
||||||
|
extern crate rustyline;
|
||||||
|
|
||||||
extern crate libimagentryfilter;
|
extern crate libimagentryfilter;
|
||||||
extern crate libimagstore;
|
extern crate libimagstore;
|
||||||
|
|
Loading…
Reference in a new issue