edlang/lib/edlang_parser/Cargo.toml

23 lines
634 B
TOML
Raw Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edlang_parser"
version = "0.1.0"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang parser"
edition = "2021"
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-15 06:44:11 +00:00
ariadne = { version = "0.4.0", features = ["auto-color"] }
2024-01-14 08:36:46 +00:00
edlang_ast = { version = "0.1.0", path = "../edlang_ast" }
2024-01-15 10:42:24 +00:00
itertools = "0.12.0"
2024-01-14 08:36:46 +00:00
lalrpop-util = { version = "0.20.0", features = ["lexer"] }
logos = "0.13.0"
tracing = { workspace = true }
[build-dependencies]
lalrpop = "0.20.0"