[package] name = "parser" version = "0.1.0" edition = "2021" build = "build.rs" [dependencies] lalrpop-util = {version = "^0.19", features = ["lexer"]} num-bigint = "0.4.3" num-traits = "0.2.15" number = { path = "../number" } ast = { path = "../ast" } 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"] } [dev-dependencies] pretty_assertions = "1.3.0" test-log = "0.2.12" env_logger = "0.10.0" [build-dependencies] lalrpop = "^0.19"