mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00

Error utils pulls in snafu which requires procedural macros. This means it can't start compiling until syn and macro related crates are compiled. This deals compiling all crates that depend on commands like running zig for the bitcode. The split enables those crates to run sooner.
19 lines
466 B
TOML
19 lines
466 B
TOML
[package]
|
|
name = "roc_bitcode"
|
|
description = "Compiles the zig bitcode to `.o` for builtins"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[build-dependencies]
|
|
roc_command_utils = { path = "../../../utils/command" }
|
|
# dunce can be removed once ziglang/zig#5109 is fixed
|
|
dunce = "1.0.3"
|
|
|
|
[target.'cfg(target_os = "macos")'.build-dependencies]
|
|
tempfile.workspace = true
|