imag-tag: Change dependency from libimagutil -> libimagerror
This commit is contained in:
parent
ab29265b10
commit
be397bcdb6
2 changed files with 4 additions and 5 deletions
|
@ -16,8 +16,8 @@ path = "../libimagstore"
|
||||||
[dependencies.libimagrt]
|
[dependencies.libimagrt]
|
||||||
path = "../libimagrt"
|
path = "../libimagrt"
|
||||||
|
|
||||||
[dependencies.libimagutil]
|
[dependencies.libimagerror]
|
||||||
path = "../libimagutil"
|
path = "../libimagerror"
|
||||||
|
|
||||||
[dependencies.libimagentrytag]
|
[dependencies.libimagentrytag]
|
||||||
path = "../libimagentrytag"
|
path = "../libimagentrytag"
|
||||||
|
|
|
@ -7,20 +7,19 @@ extern crate toml;
|
||||||
extern crate libimagstore;
|
extern crate libimagstore;
|
||||||
extern crate libimagrt;
|
extern crate libimagrt;
|
||||||
extern crate libimagentrytag;
|
extern crate libimagentrytag;
|
||||||
extern crate libimagutil;
|
extern crate libimagerror;
|
||||||
|
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
|
|
||||||
use libimagrt::runtime::Runtime;
|
use libimagrt::runtime::Runtime;
|
||||||
use libimagentrytag::tagable::Tagable;
|
use libimagentrytag::tagable::Tagable;
|
||||||
use libimagstore::storeid::build_entry_path;
|
use libimagstore::storeid::build_entry_path;
|
||||||
|
use libimagerror::trace::trace_error;
|
||||||
|
|
||||||
mod ui;
|
mod ui;
|
||||||
|
|
||||||
use ui::build_ui;
|
use ui::build_ui;
|
||||||
|
|
||||||
use libimagutil::trace::trace_error;
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let name = "imag-store";
|
let name = "imag-store";
|
||||||
let version = &version!()[..];
|
let version = &version!()[..];
|
||||||
|
|
Loading…
Reference in a new issue