Add dependencies

This commit is contained in:
Matthias Beyer 2016-01-23 15:38:14 +01:00
parent a41614fd00
commit 86e810cc43
2 changed files with 23 additions and 0 deletions

View file

@ -4,3 +4,17 @@ version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
clap = "1.5.5"
log = "0.3.5"
version = "1.1.0"
toml = "0.1.25"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagrt]
path = "../libimagrt"
[dependencies.libimagutil]
path = "../libimagutil"

View file

@ -1,3 +1,12 @@
extern crate clap;
#[macro_use] extern crate log;
extern crate toml;
#[macro_use] extern crate version;
extern crate libimagrt;
extern crate libimagstore;
extern crate libimagutil;
fn main() {
println!("Hello, world!");
}