2024-01-14 08:36:46 +00:00
|
|
|
[package]
|
2024-02-09 08:06:20 +00:00
|
|
|
name = "edlang_codegen_llvm"
|
2024-02-17 16:29:18 +00:00
|
|
|
version = "0.0.1-alpha.7"
|
2024-01-14 08:36:46 +00:00
|
|
|
authors = ["Edgar Luque <edgar@edgarluque.com>"]
|
2024-02-09 08:06:20 +00:00
|
|
|
description = "edlang LLVM codegen"
|
2024-01-14 08:36:46 +00:00
|
|
|
edition = "2021"
|
|
|
|
keywords = ["llvm", "compiler"]
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
categories = ["compilers"]
|
2024-02-13 06:30:44 +00:00
|
|
|
documentation = "https://docs.rs/ededlang_codegen_llvmang"
|
|
|
|
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-02-17 16:29:18 +00:00
|
|
|
edlang_ir = { version = "0.0.1-alpha.7", path = "../edlang_ir" }
|
|
|
|
edlang_parser = { version = "0.0.1-alpha.7", path = "../edlang_parser" }
|
|
|
|
edlang_session = { version = "0.0.1-alpha.7", path = "../edlang_session" }
|
2024-01-14 08:36:46 +00:00
|
|
|
llvm-sys = "170.0.1"
|
2024-02-13 06:26:10 +00:00
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "c044e3cd8d92972ca75b374fb6c5a2794f5b53ca", features = ["llvm17-0"] }
|
2024-01-15 06:44:11 +00:00
|
|
|
tracing = { workspace = true }
|
2024-02-17 16:29:18 +00:00
|
|
|
edlang_span = { version = "0.0.1-alpha.7", path = "../edlang_span" }
|