Skip to content

Commit

Permalink
Merge pull request #35 from epage/template
Browse files Browse the repository at this point in the history
style: Restore prelude wildcard
  • Loading branch information
epage committed Apr 26, 2024
2 parents 571e96f + f4aa8ae commit 2994d13
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/quote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::borrow::Cow;

use itertools::Itertools;
use winnow::combinator::{alt, preceded, repeat, terminated};
use winnow::prelude::{PResult, Parser};
use winnow::prelude::*;
use winnow::token::{one_of, take_while};

#[derive(Debug)]
Expand Down

0 comments on commit 2994d13

Please sign in to comment.