roc/compiler/gen_llvm/Cargo.toml

31 lines
919 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"
2021-04-10 15:07:38 +03:00
edition = "2018"
[dependencies]
2020-03-07 02:15:38 +03:00
roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_problem = { path = "../problem" }
roc_types = { path = "../types" }
roc_builtins = { path = "../builtins" }
roc_unify = { path = "../unify" }
roc_solve = { path = "../solve" }
roc_mono = { path = "../mono" }
roc_std = { path = "../../roc_std" }
2021-06-04 23:26:45 +03:00
morphic_lib = { path = "../../vendor/morphic_lib" }
im = "15.0.0"
im-rc = "15.0.0"
bumpalo = { version = "3.8.0", features = ["collections"] }
2021-05-29 22:46:33 +03:00
inkwell = { path = "../../vendor/inkwell" }
2021-08-26 22:39:33 +03:00
target-lexicon = "0.12.2"
[dev-dependencies]
2020-03-07 02:15:38 +03:00
roc_can = { path = "../can" }
roc_parse = { path = "../parse" }
bumpalo = { version = "3.8.0", features = ["collections"] }