From 7d59ed3a401284299c8139e1c08d8cd6fe29fd15 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 19 Aug 2023 11:35:17 +0200 Subject: chore: move internal re-export after public API --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index c2a1019..dc012cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,13 +14,13 @@ pub mod reader; mod tokenizer; mod utils; -#[cfg(feature = "integration-tests")] -pub use utils::State as InternalState; - pub use emitter::{Comment, DefaultEmitter, Doctype, Emitter, EndTag, StartTag, Token}; pub use error::Error; pub use tokenizer::{State, Tokenizer}; +#[cfg(feature = "integration-tests")] +pub use utils::State as InternalState; + /// Relative links in the README.md don't work in rustdoc, so we have to override them. macro_rules! file_url { ($path:literal) => { -- cgit v1.2.3