Add dependencies
This commit is contained in:
parent
6f31e0f821
commit
243aeb5e72
2 changed files with 16 additions and 4 deletions
|
@ -4,16 +4,23 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
chrono = "0.2"
|
||||||
log = "0.3.5"
|
log = "0.3.5"
|
||||||
semver = "0.2"
|
semver = "0.2"
|
||||||
toml = "0.1.25"
|
toml = "0.1.25"
|
||||||
|
regex = "0.1"
|
||||||
|
lazy_static = "0.2"
|
||||||
|
itertools = "0.4"
|
||||||
|
|
||||||
[dependencies.libimagstore]
|
[dependencies.libimagstore]
|
||||||
path = "../libimagstore"
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
[dependencies.libimagerror]
|
||||||
|
path = "../libimagerror"
|
||||||
|
|
||||||
|
[dependencies.libimagutil]
|
||||||
|
path = "../libimagutil"
|
||||||
|
|
||||||
[dependencies.libimagrt]
|
[dependencies.libimagrt]
|
||||||
path = "../libimagrt"
|
path = "../libimagrt"
|
||||||
|
|
||||||
[dependencies.libimagnotes]
|
|
||||||
path = "../libimagnotes"
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,15 @@
|
||||||
|
extern crate chrono;
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
|
#[macro_use] extern crate lazy_static;
|
||||||
extern crate semver;
|
extern crate semver;
|
||||||
extern crate toml;
|
extern crate toml;
|
||||||
|
extern crate regex;
|
||||||
|
extern crate itertools;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagstore;
|
#[macro_use] extern crate libimagstore;
|
||||||
|
extern crate libimagutil;
|
||||||
|
#[macro_use] extern crate libimagerror;
|
||||||
extern crate libimagrt;
|
extern crate libimagrt;
|
||||||
extern crate libimagnotes;
|
|
||||||
|
|
||||||
module_entry_path_mod!("diary", "0.1.0");
|
module_entry_path_mod!("diary", "0.1.0");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue