diff --git a/bin/core/imag-link/src/main.rs b/bin/core/imag-link/src/main.rs index 3e12f1c0..614a18f9 100644 --- a/bin/core/imag-link/src/main.rs +++ b/bin/core/imag-link/src/main.rs @@ -61,7 +61,7 @@ use std::path::PathBuf; use failure::Error; use failure::err_msg; -use libimagentrylink::external::ExternalLinker; +use libimagentryurl::linker::UrlLinker; use libimagentrylink::internal::InternalLinker; use libimagentrylink::internal::store_check::StoreLinkConsistentExt; use libimagerror::trace::{MapErrTrace, trace_error}; diff --git a/lib/domain/libimagbookmark/src/collection.rs b/lib/domain/libimagbookmark/src/collection.rs index 19f10f64..65890483 100644 --- a/lib/domain/libimagbookmark/src/collection.rs +++ b/lib/domain/libimagbookmark/src/collection.rs @@ -20,7 +20,7 @@ //! BookmarkCollection module //! //! A BookmarkCollection is nothing more than a simple store entry. One can simply call functions -//! from the libimagentrylink::external::ExternalLinker trait on this to generate external links. +//! from the libimagentryurl::linker::UrlLinker trait on this to generate external links. //! //! The BookmarkCollection type offers helper functions to get all links or such things. @@ -34,7 +34,7 @@ use libimagstore::store::Store; use libimagstore::store::Entry; use libimagstore::store::FileLockEntry; use libimagstore::storeid::StoreId; -use libimagentrylink::external::ExternalLinker; +use libimagentryurl::linker::UrlLinker; use libimagentrylink::external::iter::UrlIter; use libimagentrylink::internal::InternalLinker; use libimagentrylink::internal::Link as StoreLink; diff --git a/lib/entry/libimagentrymarkdown/src/processor.rs b/lib/entry/libimagentrymarkdown/src/processor.rs index 87f03ad7..9562c449 100644 --- a/lib/entry/libimagentrymarkdown/src/processor.rs +++ b/lib/entry/libimagentrymarkdown/src/processor.rs @@ -24,7 +24,7 @@ use failure::ResultExt; use failure::Error; use crate::link::extract_links; -use libimagentrylink::external::ExternalLinker; +use libimagentryurl::linker::UrlLinker; use libimagentrylink::internal::InternalLinker; use libimagentryref::reference::MutRef; use libimagentryref::reference::RefFassade;