argus/argus-parser/Cargo.toml
Anand Balakrishnan 2319668e2b
feat!(argus-parser): complete parser
This changes the API for `ExprBuilder`, but that is OK.
2023-10-03 16:11:18 -07:00

21 lines
443 B
TOML

[package]
name = "argus-parser"
version = "0.1.0"
edition = "2021"
[[example]]
name = "dump_parse_tree"
required-features = ["reporting"]
[[example]]
name = "dump_expr"
required-features = ["reporting"]
[dependencies]
argus-core = { version = "0.1.0", path = "../argus-core" }
ariadne = { version = "0.3.0", optional = true }
chumsky = { version = "1.0.0-alpha.4", features = ["default", "label"] }
[features]
reporting = ["dep:ariadne"]