edlang/lib/edlang_parser/Cargo.toml

25 lines
747 B
TOML
Raw Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edlang_parser"
2024-03-11 11:04:38 +00:00
version = "0.0.1-alpha.13"
2024-01-14 08:36:46 +00:00
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang parser"
edition = "2021"
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
2024-02-13 06:30:44 +00:00
documentation = "https://docs.rs/edlang_parser"
repository = "https://github.com/edg-l/edlang"
2024-01-14 08:36:46 +00:00
# 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-03-11 11:04:38 +00:00
edlang_ast = { version = "0.0.1-alpha.13", 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"] }
2024-02-13 06:26:10 +00:00
logos = "0.14.0"
2024-01-14 08:36:46 +00:00
tracing = { workspace = true }
[build-dependencies]
lalrpop = "0.20.0"