mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "roc_build"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_can = { path = "../can" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_region = { path = "../region" }
|
|
roc_module = { path = "../module" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_types = { path = "../types" }
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_constrain = { path = "../constrain" }
|
|
roc_unify = { path = "../unify" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_mono = { path = "../mono" }
|
|
roc_load = { path = "../load" }
|
|
roc_gen_llvm = { path = "../gen_llvm", optional = true }
|
|
roc_gen_wasm = { path = "../gen_wasm" }
|
|
roc_gen_dev = { path = "../gen_dev" }
|
|
roc_reporting = { path = "../reporting" }
|
|
roc_std = { path = "../../roc_std" }
|
|
im = "14" # im and im-rc should always have the same version!
|
|
im-rc = "14" # im and im-rc should always have the same version!
|
|
bumpalo = { version = "3.6.1", features = ["collections"] }
|
|
inlinable_string = "0.1.0"
|
|
libloading = "0.6"
|
|
tempfile = "3.1.0"
|
|
serde_json = "1.0"
|
|
inkwell = { path = "../../vendor/inkwell", optional = true }
|
|
target-lexicon = "0.12.2"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
maplit = "1.0.1"
|
|
indoc = "0.3.3"
|
|
quickcheck = "0.8"
|
|
quickcheck_macros = "0.8"
|
|
|
|
[features]
|
|
default = ["llvm", "target-webassembly"]
|
|
target-arm = []
|
|
target-aarch64 = []
|
|
target-webassembly = []
|
|
# This is a separate feature because when we generate docs on Netlify,
|
|
# it doesn't have LLVM installed. (Also, it doesn't need to do code gen.)
|
|
llvm = ["inkwell", "roc_gen_llvm"]
|