edlang/lib/edlang_driver/Cargo.toml

33 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edlang_driver"
2024-05-26 15:20:36 +00:00
version = "0.0.1-alpha.19"
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"]
2024-02-13 06:30:44 +00:00
documentation = "https://docs.rs/edlang_driver"
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-05-05 09:39:59 +00:00
ariadne = { version = "0.4.1", features = ["auto-color"] }
2024-03-27 11:11:50 +00:00
clap = { version = "4.5.4", features = ["derive"] }
2024-05-26 15:20:36 +00:00
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" }
2024-01-14 08:36:46 +00:00
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2024-03-11 11:02:14 +00:00
walkdir = "2.5.0"
2024-02-14 07:53:47 +00:00
[dev-dependencies]
2024-02-27 06:57:42 +00:00
tempfile = "3.10.1"
2024-02-14 07:53:47 +00:00
test-case = "3.3.1"