Skip to content

Commit

Permalink
Merge pull request #61 from epage/template
Browse files Browse the repository at this point in the history
style: Restore use of wildcard prelude
  • Loading branch information
epage authored Apr 26, 2024
2 parents 3cc1087 + 57bfe7d commit 79adbf5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
warn-on-all-wildcard-imports = true
allow-print-in-tests = true
allow-expect-in-tests = true
allow-unwrap-in-tests = true
Expand Down
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use winnow::combinator::trace;
use winnow::combinator::{cut_err, eof, fail, opt, peek};
use winnow::combinator::{delimited, preceded, terminated};
use winnow::error::{AddContext, ErrMode, ErrorKind, ParserError, StrContext};
use winnow::prelude::{PResult, Parser};
use winnow::prelude::*;
use winnow::stream::Stream as _;
use winnow::token::{take, take_till, take_while};

Expand Down

0 comments on commit 79adbf5

Please sign in to comment.