edlang/lib/edlang_driver/Cargo.toml

26 lines
1.1 KiB
TOML
Raw Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edlang_driver"
2024-02-13 06:26:10 +00:00
version = "0.0.1-alpha.3"
2024-01-14 08:36:46 +00:00
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang compiler driver library"
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 10:42:24 +00:00
ariadne = { version = "0.4.0", features = ["auto-color"] }
2024-01-14 08:36:46 +00:00
clap = { version = "4.4.16", features = ["derive"] }
color-eyre = "0.6.2"
2024-02-13 06:26:10 +00:00
edlang_ast = { version = "0.0.1-alpha.3", path = "../edlang_ast" }
edlang_check = { version = "0.0.1-alpha.3", path = "../edlang_check" }
edlang_codegen_llvm = { version = "0.0.1-alpha.3", path = "../edlang_codegen_llvm" }
edlang_ir = { version = "0.0.1-alpha.3", path = "../edlang_ir" }
edlang_lowering = { version = "0.0.1-alpha.3", path = "../edlang_lowering" }
edlang_parser = { version = "0.0.1-alpha.3", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.3", path = "../edlang_session" }
2024-01-14 08:36:46 +00:00
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }