edlang/lib/edlang_driver/Cargo.toml
2024-05-26 17:20:36 +02:00

33 lines
1.3 KiB
TOML

[package]
name = "edlang_driver"
version = "0.0.1-alpha.19"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang compiler driver library"
edition = "2021"
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
documentation = "https://docs.rs/edlang_driver"
repository = "https://github.com/edg-l/edlang"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ariadne = { version = "0.4.1", features = ["auto-color"] }
clap = { version = "4.5.4", features = ["derive"] }
anyhow = "1.0.86"
edlang_ast = { version = "0.0.1-alpha.19", path = "../edlang_ast" }
edlang_check = { version = "0.0.1-alpha.19", path = "../edlang_check" }
edlang_codegen_llvm = { version = "0.0.1-alpha.19", path = "../edlang_codegen_llvm" }
edlang_ir = { version = "0.0.1-alpha.19", path = "../edlang_ir" }
edlang_lowering = { version = "0.0.1-alpha.19", path = "../edlang_lowering" }
edlang_parser = { version = "0.0.1-alpha.19", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.19", path = "../edlang_session" }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2.5.0"
[dev-dependencies]
tempfile = "3.10.1"
test-case = "3.3.1"