aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-19 11:35:17 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 13:41:55 +0200
commit7d59ed3a401284299c8139e1c08d8cd6fe29fd15 (patch)
treed8162b02b0becd8c0fb496214e0381f92e9abca6
parent8eb2a95a483bddc8c6a6a8a30dff68c290277075 (diff)
chore: move internal re-export after public API
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
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) => {