Move trace_error() functionality from libimagutil to libimagerror
This commit is contained in:
parent
38a8772d69
commit
1c723a9a0e
5 changed files with 6 additions and 3 deletions
|
@ -4,3 +4,5 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
log = "0.3"
|
||||||
|
ansi_term = "0.7"
|
||||||
|
|
|
@ -1 +1,5 @@
|
||||||
|
#[macro_use] extern crate log;
|
||||||
|
extern crate ansi_term;
|
||||||
|
|
||||||
pub mod error_gen;
|
pub mod error_gen;
|
||||||
|
pub mod trace;
|
||||||
|
|
|
@ -7,5 +7,4 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
lazy_static = "0.1.15"
|
lazy_static = "0.1.15"
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
regex = "0.1"
|
regex = "0.1"
|
||||||
ansi_term = "0.7"
|
|
||||||
|
|
||||||
|
|
|
@ -16,9 +16,7 @@
|
||||||
#[macro_use] extern crate lazy_static;
|
#[macro_use] extern crate lazy_static;
|
||||||
#[macro_use] extern crate log;
|
#[macro_use] extern crate log;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
extern crate ansi_term;
|
|
||||||
|
|
||||||
pub mod ismatch;
|
pub mod ismatch;
|
||||||
pub mod key_value_split;
|
pub mod key_value_split;
|
||||||
pub mod trace;
|
|
||||||
pub mod variants;
|
pub mod variants;
|
||||||
|
|
Loading…
Reference in a new issue