2024-01-14 08:36:46 +00:00
|
|
|
[package]
|
|
|
|
name = "edlang_check"
|
2024-03-02 09:23:53 +00:00
|
|
|
version = "0.0.1-alpha.12"
|
2024-01-14 08:36:46 +00:00
|
|
|
authors = ["Edgar Luque <edgar@edgarluque.com>"]
|
|
|
|
description = "edlang check"
|
|
|
|
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_check"
|
|
|
|
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]
|
|
|
|
ariadne = { version = "0.4.0", features = ["auto-color"] }
|
2024-03-02 09:23:53 +00:00
|
|
|
edlang_ast = { version = "0.0.1-alpha.12", path = "../edlang_ast" }
|
|
|
|
edlang_lowering = { version = "0.0.1-alpha.12", path = "../edlang_lowering" }
|
|
|
|
edlang_session = { version = "0.0.1-alpha.12", path = "../edlang_session" }
|
2024-01-14 08:36:46 +00:00
|
|
|
tracing = { workspace = true }
|