diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-12 11:50:46 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 06:41:55 +0200 |
commit | 69fdbee250ebfce135bff2671226097bc536d953 (patch) | |
tree | 994ef511feb77d7a095dc43ec62bca681242228e /integration_tests/tests/test_html5lib.rs | |
parent | 7a42549d3121bb9fe29e7e58260a287e62714bc3 (diff) |
break!: stop re-exporting reader traits & types
This is primarily done to make the rustdoc more readable
(by grouping Reader, IntoReader, StringReader and BufReadReader
in the reader module). Ideally IntoReader is already implemented
for your input type and you don't have to concern yourself
with these traits / types at all.
Diffstat (limited to 'integration_tests/tests/test_html5lib.rs')
-rw-r--r-- | integration_tests/tests/test_html5lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_tests/tests/test_html5lib.rs b/integration_tests/tests/test_html5lib.rs index f5a69c3..209e199 100644 --- a/integration_tests/tests/test_html5lib.rs +++ b/integration_tests/tests/test_html5lib.rs @@ -3,7 +3,7 @@ use std::{fs::File, io::BufReader, path::Path}; use html5lib_tests::{ parse_tests, Error as TestError, InitialState, Output, Test, Token as TestToken, }; -use html5tokenizer::{DefaultEmitter, InternalState, Reader, Token, Tokenizer}; +use html5tokenizer::{reader::Reader, DefaultEmitter, InternalState, Token, Tokenizer}; use pretty_assertions::assert_eq; /// Path to a local checkout of [html5lib-tests], relative to the |