Add dependencies
This commit is contained in:
parent
c45b5ba975
commit
d5cb5be4ab
2 changed files with 31 additions and 0 deletions
|
@ -4,3 +4,23 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
semver = "0.2.1"
|
||||||
|
clap = "2.1.1"
|
||||||
|
log = "0.3"
|
||||||
|
version = "2.0.1"
|
||||||
|
|
||||||
|
[dependencies.libimagstore]
|
||||||
|
path = "../libimagstore"
|
||||||
|
|
||||||
|
[dependencies.libimagrt]
|
||||||
|
path = "../libimagrt"
|
||||||
|
|
||||||
|
[dependencies.libimagref]
|
||||||
|
path = "../libimagref"
|
||||||
|
|
||||||
|
[dependencies.libimagerror]
|
||||||
|
path = "../libimagerror"
|
||||||
|
|
||||||
|
[dependencies.libimagentrylist]
|
||||||
|
path = "../libimagentrylist"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
#[macro_use] extern crate log;
|
||||||
|
#[macro_use] extern crate version;
|
||||||
|
extern crate semver;
|
||||||
|
extern crate clap;
|
||||||
|
|
||||||
|
extern crate libimagstore;
|
||||||
|
extern crate libimagrt;
|
||||||
|
extern crate libimagref;
|
||||||
|
extern crate libimagerror;
|
||||||
|
extern crate libimagentrylist;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
println!("Hello, world!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue