diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-19 11:35:17 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:41:55 +0200 |
commit | 7d59ed3a401284299c8139e1c08d8cd6fe29fd15 (patch) | |
tree | d8162b02b0becd8c0fb496214e0381f92e9abca6 /src | |
parent | 8eb2a95a483bddc8c6a6a8a30dff68c290277075 (diff) |
chore: move internal re-export after public API
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) => { |