From 2b8ef9dcd5f8d14991c702c0f7871169e1029e5c Mon Sep 17 00:00:00 2001 From: David Bittner Date: Mon, 6 May 2019 17:03:19 -0400 Subject: [PATCH] whoops, namespace issues --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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::*;