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