Fix names: libimaglink -> libimagentrylink
This commit is contained in:
parent
33aa56019f
commit
b5fd085693
4 changed files with 7 additions and 7 deletions
|
@ -17,8 +17,8 @@ path = "../libimagstore"
|
|||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimaglink]
|
||||
path = "../libimaglink"
|
||||
[dependencies.libimagentrylink]
|
||||
path = "../libimagentrylink"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
|
|
@ -20,7 +20,7 @@ extern crate toml;
|
|||
extern crate url;
|
||||
#[macro_use] extern crate version;
|
||||
|
||||
extern crate libimaglink;
|
||||
extern crate libimagentrylink;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagstore;
|
||||
extern crate libimagutil;
|
||||
|
@ -34,7 +34,7 @@ use libimagstore::store::Entry;
|
|||
use libimagstore::store::FileLockEntry;
|
||||
use libimagstore::store::Store;
|
||||
use libimagutil::trace::trace_error;
|
||||
use libimaglink::external::ExternalLinker;
|
||||
use libimagentrylink::external::ExternalLinker;
|
||||
use clap::ArgMatches;
|
||||
use url::Url;
|
||||
|
||||
|
@ -77,7 +77,7 @@ fn main() {
|
|||
}
|
||||
|
||||
fn handle_internal_linking(rt: &Runtime) {
|
||||
use libimaglink::internal::InternalLinker;
|
||||
use libimagentrylink::internal::InternalLinker;
|
||||
use libimagutil::trace::trace_error;
|
||||
|
||||
debug!("Handle internal linking call");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "libimaglink"
|
||||
name = "libimagentrylink"
|
||||
version = "0.1.0"
|
||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# libimaglink
|
||||
# libimagentrylink
|
||||
|
||||
Linking library for linking entries with other entries. Used for "imag-link",
|
||||
the commandline utility, but intended for use in other binaries and libraries as
|
||||
|
|
Loading…
Reference in a new issue