Add dependencies
This commit is contained in:
parent
937530b41f
commit
c5beb34614
3 changed files with 42 additions and 1 deletions
|
@ -4,3 +4,32 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
chrono = "0.2"
|
||||||
|
version = "2.0"
|
||||||
|
clap = "2.1.1"
|
||||||
|
log = "0.3.5"
|
||||||
|
|
||||||
|
[dependencies.libimagrt]
|
||||||
|
path = "../libimagrt"
|
||||||
|
|
||||||
|
[dependencies.libimagdiary]
|
||||||
|
path = "../libimagdiary"
|
||||||
|
|
||||||
|
[dependencies.libimagentrylist]
|
||||||
|
path = "../libimagentrylist"
|
||||||
|
|
||||||
|
[dependencies.libimagerror]
|
||||||
|
path = "../libimagerror"
|
||||||
|
|
||||||
|
[dependencies.libimaginteraction]
|
||||||
|
path = "../libimaginteraction"
|
||||||
|
|
||||||
|
[dependencies.libimagutil]
|
||||||
|
path = "../libimagutil"
|
||||||
|
|
||||||
|
[dependencies.libimagstore]
|
||||||
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
[dependencies.libimagtimeui]
|
||||||
|
path = "../libimagtimeui"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
#[macro_use] extern crate log;
|
||||||
|
#[macro_use] extern crate version;
|
||||||
|
extern crate clap;
|
||||||
|
extern crate chrono;
|
||||||
|
|
||||||
|
extern crate libimagdiary;
|
||||||
|
extern crate libimagentrylist;
|
||||||
|
extern crate libimaginteraction;
|
||||||
|
extern crate libimagrt;
|
||||||
|
extern crate libimagutil;
|
||||||
|
#[macro_use] extern crate libimagerror;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
println!("Hello, world!");
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ extern crate regex;
|
||||||
extern crate itertools;
|
extern crate itertools;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagstore;
|
#[macro_use] extern crate libimagstore;
|
||||||
extern crate libimagutil;
|
#[macro_use] extern crate libimagutil;
|
||||||
#[macro_use] extern crate libimagerror;
|
#[macro_use] extern crate libimagerror;
|
||||||
extern crate libimagrt;
|
extern crate libimagrt;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue