From ae2253a7b9d4696da48d7f7c0e46405cc1fc2fd4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 23 Feb 2017 13:22:46 +0100 Subject: [PATCH] Add libimagnotes extern crate, remove module entry path mod generation --- libimagannotation/src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libimagannotation/src/lib.rs b/libimagannotation/src/lib.rs index 40654808..4d050613 100644 --- a/libimagannotation/src/lib.rs +++ b/libimagannotation/src/lib.rs @@ -23,12 +23,9 @@ extern crate toml; #[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagstore; extern crate libimagentrylink; +extern crate libimagnotes; extern crate libimagutil; -pub static MODULE_ENTRY_PATH_NAME: &'static str = "annotation"; - -module_entry_path_mod!(MODULE_ENTRY_PATH_NAME); - pub mod annotation; pub mod error; pub mod result;