aboutsummaryrefslogtreecommitdiffstats
path: root/modelica-parser-lalrpop/Cargo.toml
blob: 6e4b196054ac863c4f0860c5b7354cc7cca9598d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "modelica-parser-lalrpop"
version = "0.1.0"
authors = ["bnewbold <bnewbold@robocracy.org>"]
description = """
Partial (work in progress) parser for the modelica language using the LALRPOP
rust parser crate.
"""
keywords = ["modelica", "lalrpop", "parser"]
build = "build.rs" # LALRPOP preprocessing
license = "MIT"
readme = "README.md"

[lib]
name = "modelica_parser"

[dependencies]
lalrpop-util = "^0.12.4"
colored = "1.3"
regex = "^0.1"
lazy_static = "^0.2"

[build-dependencies]
lalrpop = "0.12"

[features]
# this effectively enables the feature `no-color` of colored when testing
test = ["colored/no-color"]