Skip to content

Commit

Permalink
deps: bump winnow from 0.5.56 to 0.6.0 (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored Feb 14, 2024
1 parent 5ba26b8 commit e99df19
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sha2 = "0.10"
strsim = "0.11"
thiserror = "1.0"
toml = "0.8"
winnow = "0.5.36"
winnow = "0.6"

[profile.release]
codegen-units = 1
Expand Down
4 changes: 2 additions & 2 deletions crates/pica-matcher/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use winnow::combinator::{
alt, delimited, preceded, repeat, terminated,
};
use winnow::error::{ContextError, ParserError};
use winnow::stream::{AsChar, Stream, StreamIsPartial};
use winnow::stream::{AsChar, Compare, Stream, StreamIsPartial};
use winnow::token::take_till;
use winnow::{PResult, Parser};

Expand Down Expand Up @@ -171,7 +171,7 @@ where

fn parse_escaped_char<I, E>(quotes: Quotes) -> impl Parser<I, char, E>
where
I: Stream + StreamIsPartial,
I: Stream + StreamIsPartial + Compare<char>,
<I as Stream>::Token: AsChar + Clone,
E: ParserError<I>,
{
Expand Down
4 changes: 2 additions & 2 deletions crates/pica-select/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use winnow::ascii::{multispace0, multispace1};
use winnow::combinator::{alt, delimited, preceded, repeat, separated};
use winnow::error::{ContextError, ParserError};
use winnow::prelude::*;
use winnow::stream::{AsChar, Stream, StreamIsPartial};
use winnow::stream::{AsChar, Compare, Stream, StreamIsPartial};
use winnow::token::take_till;

#[derive(Debug, Error)]
Expand Down Expand Up @@ -122,7 +122,7 @@ where

fn parse_escaped_char<I, E>(quotes: Quotes) -> impl Parser<I, char, E>
where
I: Stream + StreamIsPartial,
I: Stream + StreamIsPartial + Compare<char>,
<I as Stream>::Token: AsChar + Clone,
E: ParserError<I>,
{
Expand Down

0 comments on commit e99df19

Please sign in to comment.