complete parser, but compile time is slow

This commit is contained in:
Anand Balakrishnan 2023-10-02 17:23:26 -07:00
parent 6632e897ba
commit 3adf2ff723
6 changed files with 482 additions and 14 deletions

View file

@ -3,7 +3,15 @@ name = "argus-parser"
version = "0.1.0"
edition = "2021"
[lib]
name = "argus_parser"
[[bin]]
name = "argus_parser"
path = "src/main.rs"
[dependencies]
argus-core = { version = "0.1.0", path = "../argus-core" }
ariadne = "0.3.0"
chumsky = "1.0.0-alpha.4"
chumsky = { version = "1.0.0-alpha.4", features = ["default", "label"] }