Files
powdr/parser/Cargo.toml
2023-05-11 11:28:38 +02:00

18 lines
520 B
TOML

[package]
name = "parser"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
lalrpop-util = {version = "^0.19", features = ["lexer"]}
num-traits = "0.2.15"
number = { path = "../number" }
parser_util = { path = "../parser_util" }
# This is only here to work around https://github.com/lalrpop/lalrpop/issues/750
# It should be removed once that workaround is no longer needed.
regex-syntax = { version = "0.6", default_features = false, features = ["unicode"] }
[build-dependencies]
lalrpop = "^0.19"