Skip to content

Commit 8dbe7a4

Browse files
authored
Update lalrpop to v0.20 (#369)
1 parent e0badca commit 8dbe7a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

partiql-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bench = false
2222

2323
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2424
[build-dependencies]
25-
lalrpop = "0.19.8"
25+
lalrpop = "0.20"
2626

2727
[dependencies]
2828
partiql-ast = { path = "../partiql-ast", version = "0.3.*" }
@@ -35,7 +35,7 @@ num-bigint = "~0.4.0"
3535
bigdecimal = "~0.2.0"
3636
rust_decimal = { version = "1.25.0", default-features = false, features = ["std"] }
3737

38-
lalrpop-util = "0.19.8"
38+
lalrpop-util = "0.20"
3939
logos = "~0.12.0"
4040

4141
itertools = "~0.10.3"

partiql-parser/src/parse/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ impl<'input> From<LalrpopError<'input>> for ParseError<'input, BytePosition> {
122122
ParseError::Unknown(location.into())
123123
}
124124

125-
// TODO do something with UnrecognizedEOF.expected
126-
lalrpop_util::ParseError::UnrecognizedEOF { expected: _, .. } => {
125+
// TODO do something with UnrecognizedEof.expected
126+
lalrpop_util::ParseError::UnrecognizedEof { expected: _, .. } => {
127127
ParseError::UnexpectedEndOfInput
128128
}
129129

0 commit comments

Comments
 (0)