Skip to content

Commit 47d0374

Browse files
committed
Use winnow BStr
1 parent 516e105 commit 47d0374

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/tools/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::{
1212
};
1313

1414
pub use bstr;
15-
use bstr::{BStr, ByteSlice};
15+
use bstr::ByteSlice;
1616
use io_close::Close;
1717
pub use is_ci;
1818
pub use once_cell;
@@ -697,9 +697,9 @@ fn extract_archive(
697697
/// Transform a verbose parser errors from raw bytes into a `BStr` to make printing/debugging human-readable.
698698
pub fn to_bstr_err(
699699
err: winnow::error::ErrMode<winnow::error::TreeError<&[u8], winnow::error::StrContext>>,
700-
) -> winnow::error::TreeError<&BStr, winnow::error::StrContext> {
700+
) -> winnow::error::TreeError<&winnow::stream::BStr, winnow::error::StrContext> {
701701
let err = err.into_inner().expect("not a streaming parser");
702-
err.map_input(ByteSlice::as_bstr)
702+
err.map_input(winnow::stream::BStr::new)
703703
}
704704

705705
fn family_name() -> &'static str {

0 commit comments

Comments
 (0)