Add new dependencies: Serde*
This commit is contained in:
parent
af2b629a86
commit
08f9eb3d83
2 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,9 @@ crossbeam = "0.2.*"
|
||||||
walkdir = "1.0.*"
|
walkdir = "1.0.*"
|
||||||
itertools = "0.6.*"
|
itertools = "0.6.*"
|
||||||
is-match = "0.1"
|
is-match = "0.1"
|
||||||
|
serde = "1.0"
|
||||||
|
serde_json = "1.0"
|
||||||
|
serde_derive = "1.0"
|
||||||
|
|
||||||
[dependencies.libimagerror]
|
[dependencies.libimagerror]
|
||||||
path = "../libimagerror"
|
path = "../libimagerror"
|
||||||
|
|
|
@ -44,6 +44,9 @@ extern crate crossbeam;
|
||||||
extern crate walkdir;
|
extern crate walkdir;
|
||||||
extern crate itertools;
|
extern crate itertools;
|
||||||
#[macro_use] extern crate is_match;
|
#[macro_use] extern crate is_match;
|
||||||
|
#[macro_use] extern crate serde;
|
||||||
|
#[macro_use] extern crate serde_json;
|
||||||
|
#[macro_use] extern crate serde_derive;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagerror;
|
#[macro_use] extern crate libimagerror;
|
||||||
extern crate libimagutil;
|
extern crate libimagutil;
|
||||||
|
|
Loading…
Reference in a new issue