roc/compiler/gen_llvm/Cargo.toml

23 lines
780 B
TOML
Raw Normal View History

[package]
name = "roc_gen_llvm"
description = "The LLVM backend for the Roc compiler"
version = "0.1.0"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2022-05-16 18:04:17 +03:00
edition = "2021"
[dependencies]
roc_alias_analysis = { path = "../alias_analysis" }
2020-03-07 02:15:38 +03:00
roc_collections = { path = "../collections" }
roc_module = { path = "../module" }
roc_builtins = { path = "../builtins" }
roc_error_macros = { path = "../../error_macros" }
2020-03-07 02:15:38 +03:00
roc_mono = { path = "../mono" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
2022-02-26 07:10:36 +03:00
roc_std = { path = "../../roc_std", default-features = false }
2022-05-01 19:25:03 +03:00
roc_debug_flags = { path = "../debug_flags" }
2021-06-04 23:26:45 +03:00
morphic_lib = { path = "../../vendor/morphic_lib" }
bumpalo = { version = "3.8.0", features = ["collections"] }
2021-05-29 22:46:33 +03:00
inkwell = { path = "../../vendor/inkwell" }
2022-04-24 03:51:57 +03:00
target-lexicon = "0.12.3"