diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-09 21:42:17 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | 2c73901944e2d22747a2a4ebcc11881b3f8c2ad3 (patch) | |
tree | 310726d807df6f6ae6911033dd31e5bd139a0559 /src/lib.rs | |
parent | 2a0c35906d96203a3dc2b41cf8a1be74e025b285 (diff) |
refactor: move utils module under tokenizer::machine
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 { |