edlang/lib/edlang_lowering/Cargo.toml

20 lines
636 B
TOML
Raw Normal View History

2024-01-27 11:55:54 +00:00
[package]
name = "edlang_lowering"
2024-05-07 07:12:55 +00:00
version = "0.0.1-alpha.18"
2024-02-13 06:28:19 +00:00
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang lowering"
2024-01-27 11:55:54 +00:00
edition = "2021"
2024-02-13 06:28:19 +00:00
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
2024-02-13 06:30:44 +00:00
documentation = "https://docs.rs/edlang_lowering"
repository = "https://github.com/edg-l/edlang"
2024-01-27 11:55:54 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-05-07 07:12:55 +00:00
edlang_ast = { version = "0.0.1-alpha.18", path = "../edlang_ast" }
edlang_ir = { version = "0.0.1-alpha.18", path = "../edlang_ir" }
2024-02-08 10:58:10 +00:00
tracing.workspace = true
2024-05-05 09:39:59 +00:00
thiserror = "1.0.59"