mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +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.
25 lines
665 B
TOML
25 lines
665 B
TOML
[package]
|
|
name = "cli_utils"
|
|
description = "Provides shared code for cli tests and benchmarks."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_reporting = { path = "../reporting" }
|
|
roc_command_utils = { path = "../utils/command" }
|
|
|
|
bumpalo.workspace = true
|
|
criterion.workspace = true
|
|
serde-xml-rs.workspace = true
|
|
serde.workspace = true
|
|
tempfile.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
rlimit.workspace = true
|