mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
56 lines
1.5 KiB
TOML
56 lines
1.5 KiB
TOML
[package]
|
|
name = "roc_build"
|
|
description = "Responsible for coordinating building and linking of a Roc app with its host."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_bitcode.workspace = true
|
|
roc_can.workspace = true
|
|
roc_collections.workspace = true
|
|
roc_constrain.workspace = true
|
|
roc_debug_flags.workspace = true
|
|
roc_error_macros.workspace = true
|
|
roc_gen_dev.workspace = true
|
|
roc_gen_llvm.workspace = true
|
|
roc_gen_wasm.workspace = true
|
|
roc_linker.workspace = true
|
|
roc_load.workspace = true
|
|
roc_module.workspace = true
|
|
roc_mono.workspace = true
|
|
roc_packaging.workspace = true
|
|
roc_parse.workspace = true
|
|
roc_problem.workspace = true
|
|
roc_region.workspace = true
|
|
roc_reporting.workspace = true
|
|
roc_solve_problem.workspace = true
|
|
roc_std.workspace = true
|
|
roc_target.workspace = true
|
|
roc_types.workspace = true
|
|
roc_unify.workspace = true
|
|
roc_command_utils.workspace = true
|
|
wasi_libc_sys.workspace = true
|
|
|
|
bumpalo.workspace = true
|
|
indoc.workspace = true
|
|
inkwell.workspace = true
|
|
libloading.workspace = true
|
|
target-lexicon.workspace = true
|
|
tempfile.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
target-aarch64 = ["roc_gen_dev/target-aarch64"]
|
|
target-arm = []
|
|
target-wasm32 = []
|
|
target-x86 = []
|
|
target-x86_64 = ["roc_gen_dev/target-x86_64"]
|
|
|
|
# This is used to enable fuzzing and sanitizers.
|
|
# Example use is describe here: https://github.com/bhansconnect/roc-fuzz
|
|
sanitizers = []
|