Fix package name of libimagentryannotation
Fix: run `sed -i 's,libimagref,libimagentryref,g' (rg -l 'libimagref')` Fix: run `sed -i 's,libimagannotation,libimagentryannotation,g' (rg -l 'libimagannotation')`
This commit is contained in:
parent
59a3662ac4
commit
8a63815854
12 changed files with 19 additions and 21 deletions
|
@ -26,4 +26,3 @@ libimagref = { version = "0.4.0", path = "../../../lib/entry/libimagentr
|
|||
libimagentrylist = { version = "0.4.0", path = "../../../lib/entry/libimagentrylist" }
|
||||
libimaginteraction = { version = "0.4.0", path = "../../../lib/etc/libimaginteraction" }
|
||||
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ extern crate clap;
|
|||
|
||||
extern crate libimagstore;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagref;
|
||||
extern crate libimagentryref;
|
||||
extern crate libimagerror;
|
||||
extern crate libimagentrylist;
|
||||
extern crate libimaginteraction;
|
||||
|
@ -50,8 +50,8 @@ use ui::build_ui;
|
|||
|
||||
use std::path::PathBuf;
|
||||
|
||||
use libimagref::reference::Ref;
|
||||
use libimagref::flags::RefFlags;
|
||||
use libimagentryref::reference::Ref;
|
||||
use libimagentryref::flags::RefFlags;
|
||||
use libimagerror::trace::trace_error;
|
||||
use libimagrt::setup::generate_runtime_setup;
|
||||
use libimagrt::runtime::Runtime;
|
||||
|
@ -118,7 +118,7 @@ fn list(rt: &Runtime) {
|
|||
use std::process::exit;
|
||||
|
||||
use libimagentrylist::lister::Lister;
|
||||
use libimagref::lister::RefLister;
|
||||
use libimagentryref::lister::RefLister;
|
||||
|
||||
let cmd = rt.cli().subcommand_matches("list").unwrap();
|
||||
let do_check_dead = cmd.is_present("check-dead");
|
||||
|
|
|
@ -22,4 +22,3 @@ libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
|||
libimagmail = { version = "0.4.0", path = "../../../lib/domain/libimagmail" }
|
||||
libimagref = { version = "0.4.0", path = "../../../lib/entry/libimagentryref" }
|
||||
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }
|
||||
|
||||
|
|
|
@ -28,11 +28,11 @@ extern crate libimagrt;
|
|||
extern crate libimagmail;
|
||||
extern crate libimagerror;
|
||||
extern crate libimagutil;
|
||||
extern crate libimagref;
|
||||
extern crate libimagentryref;
|
||||
|
||||
use libimagerror::trace::{MapErrTrace, trace_error, trace_error_exit};
|
||||
use libimagmail::mail::Mail;
|
||||
use libimagref::reference::Ref;
|
||||
use libimagentryref::reference::Ref;
|
||||
use libimagrt::runtime::Runtime;
|
||||
use libimagrt::setup::generate_runtime_setup;
|
||||
use libimagutil::debug_result::*;
|
||||
|
|
|
@ -38,7 +38,7 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
|||
.version("0.1")
|
||||
|
||||
// TODO: Thee following four arguments are the same as in imag-ref.
|
||||
// We should make these importable from libimagref.
|
||||
// We should make these importable from libimagentryref.
|
||||
|
||||
.arg(Arg::with_name("check-dead")
|
||||
.long("check-dead")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## libimagannotation
|
||||
## libimagentryannotation
|
||||
|
||||
This library provides annotation functionality for entries.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## libimagref
|
||||
## libimagentryref
|
||||
|
||||
This library crate contains functionality to generate _references_ within the
|
||||
imag store.
|
||||
|
|
|
@ -22,11 +22,11 @@ use std::path::PathBuf;
|
|||
|
||||
use email::MimeMessage;
|
||||
|
||||
use libimagref::hasher::Hasher;
|
||||
use libimagref::hasher::DefaultHasher;
|
||||
use libimagref::error::RefErrorKind as REK;
|
||||
use libimagref::error::MapErrInto;
|
||||
use libimagref::result::Result as RResult;
|
||||
use libimagentryref::hasher::Hasher;
|
||||
use libimagentryref::hasher::DefaultHasher;
|
||||
use libimagentryref::error::RefErrorKind as REK;
|
||||
use libimagentryref::error::MapErrInto;
|
||||
use libimagentryref::result::Result as RResult;
|
||||
use libimagerror::into::IntoError;
|
||||
|
||||
use error::MailErrorKind as MEK;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
use mail::Mail;
|
||||
use result::Result;
|
||||
|
||||
use libimagref::reference::Ref;
|
||||
use libimagentryref::reference::Ref;
|
||||
|
||||
use std::marker::PhantomData;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ extern crate filters;
|
|||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagstore;
|
||||
extern crate libimagref;
|
||||
extern crate libimagentryref;
|
||||
|
||||
pub mod error;
|
||||
pub mod hasher;
|
||||
|
|
|
@ -23,8 +23,8 @@ use std::fs::File;
|
|||
use std::io::Read;
|
||||
|
||||
use libimagstore::store::Store;
|
||||
use libimagref::reference::Ref;
|
||||
use libimagref::flags::RefFlags;
|
||||
use libimagentryref::reference::Ref;
|
||||
use libimagentryref::flags::RefFlags;
|
||||
|
||||
use email::MimeMessage;
|
||||
use email::results::ParsingResult as EmailParsingResult;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "libimagannotation"
|
||||
name = "libimagentryannotation"
|
||||
version = "0.4.0"
|
||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue