diff options
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) => { |