File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use std::{
12
12
} ;
13
13
14
14
pub use bstr;
15
- use bstr:: { BStr , ByteSlice } ;
15
+ use bstr:: ByteSlice ;
16
16
use io_close:: Close ;
17
17
pub use is_ci;
18
18
pub use once_cell;
@@ -697,9 +697,9 @@ fn extract_archive(
697
697
/// Transform a verbose parser errors from raw bytes into a `BStr` to make printing/debugging human-readable.
698
698
pub fn to_bstr_err (
699
699
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 > {
701
701
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 )
703
703
}
704
704
705
705
fn family_name ( ) -> & ' static str {
You can’t perform that action at this time.
0 commit comments