edlang/lib/edlang_codegen_llvm/Cargo.toml
2024-05-05 11:39:59 +02:00

23 lines
942 B
TOML

[package]
name = "edlang_codegen_llvm"
version = "0.0.1-alpha.17"
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang LLVM codegen"
edition = "2021"
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
documentation = "https://docs.rs/ededlang_codegen_llvmang"
repository = "https://github.com/edg-l/edlang"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
edlang_ir = { version = "0.0.1-alpha.17", path = "../edlang_ir" }
edlang_parser = { version = "0.0.1-alpha.17", path = "../edlang_parser" }
edlang_session = { version = "0.0.1-alpha.17", path = "../edlang_session" }
llvm-sys = "180.0"
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "5d5a531c765a6ad37aa6591c0287d0f9109fff62", features = ["llvm18-0"] }
tracing = { workspace = true }
edlang_span = { version = "0.0.1-alpha.17", path = "../edlang_span" }