Add dependencies
This commit is contained in:
parent
5a0720e3bb
commit
63d2f56a88
2 changed files with 16 additions and 6 deletions
|
@ -4,3 +4,13 @@ version = "0.1.0"
|
|||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
[dependencies]
|
||||
log = "0.3"
|
||||
semver = "0.2"
|
||||
url = "1.1"
|
||||
|
||||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
}
|
||||
}
|
||||
#[macro_use] extern crate log;
|
||||
extern crate semver;
|
||||
extern crate url;
|
||||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
extern crate libimagentrylink;
|
||||
|
|
Loading…
Reference in a new issue