diff --git a/Cargo.lock b/Cargo.lock index 8019ed5..ba8a12c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "ansi-parser" -version = "0.5.3" +version = "0.6.0" dependencies = [ "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 37ded95..21b92cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "A library using nom for parsing ANSI Escape Codes" homepage = "https://gitlab.com/DavidBittner/ansi-parser" authors = ["David Bittner "] -version = "0.6.0" +version = "0.6.1" license = "MPL-2.0" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 971916a..480d124 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,4 +19,4 @@ mod traits; /// was an ANSI Sequence. pub use enums::*; -pub use traits::AnsiParser; +pub use traits::*;