mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
33 lines
1,014 B
TOML
33 lines
1,014 B
TOML
[package]
|
|
name = "roc_load"
|
|
description = "Used to load a .roc file and coordinate the compiler pipeline, including parsing, type checking, and code generation."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_can = { path = "../can" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_load_internal = { path = "../load_internal" }
|
|
roc_module = { path = "../module" }
|
|
roc_packaging = { path = "../../packaging" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_types = { path = "../types" }
|
|
|
|
bumpalo.workspace = true
|
|
|
|
[build-dependencies]
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_can = { path = "../can" }
|
|
roc_module = { path = "../module" }
|
|
roc_packaging = { path = "../../packaging" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
roc_target = { path = "../roc_target" }
|
|
|
|
bumpalo.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.build-dependencies]
|
|
roc_load_internal = { path = "../load_internal" }
|