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.
17 lines
438 B
TOML
17 lines
438 B
TOML
[package]
|
|
name = "roc_builtins"
|
|
description = "Provides the Roc functions and modules that are implicitly imported into every module."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_module = { path = "../module" }
|
|
roc_region = { path = "../region" }
|
|
roc_target = { path = "../roc_target" }
|
|
|
|
tempfile.workspace = true
|
|
|