diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,7 +13,6 @@ mod entities; mod error; mod naive_parser; mod tokenizer; -mod utils; /// Types for HTML attributes. pub mod attr { @@ -33,7 +32,7 @@ pub use token::{Comment, Doctype, EndTag, StartTag, Token}; pub use tokenizer::{CdataAction, Event, State, Tokenizer}; #[cfg(feature = "integration-tests")] -pub use utils::State as InternalState; +pub use tokenizer::InternalState; /// Relative links in the README.md don't work in rustdoc, so we have to override them. macro_rules! file_url { |