Add module_entry_path_mod!() call, so we have an own module path for the link library

- Add missing extern crate semver
- Add missing semver import
This commit is contained in:
Matthias Beyer 2016-04-09 15:49:36 +02:00
parent 91caa0c665
commit 890458ea1e
2 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,7 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
log = "0.3.4"
toml = "0.1.27"
semver = "0.2"
url = "0.5.5"
[dependencies.libimagstore]

View File

@ -1,8 +1,11 @@
#[macro_use] extern crate log;
extern crate toml;
extern crate semver;
extern crate url;
extern crate libimagstore;
#[macro_use] extern crate libimagstore;
module_entry_path_mod!("links", "0.1.0");
pub mod error;
pub mod external;