From 3f6db1d9d4dcb11155b6fef9b7ddd6026fd9ddae Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 4 Nov 2020 20:20:55 +0800 Subject: [PATCH] Remove extra export of LexError. --- src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 71fbf3cf..e8019d24 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -161,11 +161,6 @@ pub mod serde { pub use optimize::OptimizationLevel; // Expose internal data structures. - -#[cfg(feature = "internals")] -#[deprecated(note = "this type is volatile and may change")] -pub use parse_error::LexError; - #[cfg(feature = "internals")] #[deprecated(note = "this type is volatile and may change")] pub use token::{get_next_token, parse_string_literal, InputStream, Token, TokenizeState};