Skip to content

Commit

Permalink
Update nom dependency to 7.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaj committed Dec 10, 2021
1 parent 0ba4ff0 commit 4bce36f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ project adheres to
## Unreleased

* Current stable rust is 1.57, MSRV is now 1.46.0.
* Update nom dependency to 7.1.0.
* Update optional rsass to 0.23.0.
* Update env_logger to 0.9 and gotham to 0.7.1 in examples

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ base64 = "^0.13"
bytecount = "0.6.0"
itertools = "0.10.0"
md5 = "0.7"
nom = "6.1.0"
nom = "7.1.0"

rsass = { version = "0.23.0", optional = true }
mime = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn expression(input: &[u8]) -> PResult<&str> {
preceded(tag("!"), expr_in_parens),
preceded(tag("!"), expr_in_brackets),
)),
(),
|| (),
|_, _| (),
),
)),
Expand Down

0 comments on commit 4bce36f

Please sign in to comment.