mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-23 06:25:10 +00:00
50 lines
1.6 KiB
TOML
50 lines
1.6 KiB
TOML
[package]
|
|
name = "roc_load_internal"
|
|
description = "The internal implementation of roc_load, separate from roc_load to support caching."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_can = { path = "../can" }
|
|
roc_work = { path = "../work" }
|
|
roc_checkmate = { path = "../checkmate" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_constrain = { path = "../constrain" }
|
|
roc_debug_flags = { path = "../debug_flags" }
|
|
roc_derive = { path = "../derive" }
|
|
roc_derive_key = { path = "../derive_key" }
|
|
roc_error_macros = { path = "../../error_macros" }
|
|
roc_late_solve = { path = "../late_solve" }
|
|
roc_module = { path = "../module" }
|
|
roc_mono = { path = "../mono" }
|
|
roc_packaging = { path = "../../packaging" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_region = { path = "../region" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_solve_problem = { path = "../solve_problem" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_tracing = { path = "../../tracing" }
|
|
roc_types = { path = "../types" }
|
|
roc_unify = { path = "../unify" }
|
|
roc_worker = { path = "../worker" }
|
|
roc_lower_params = { path = "../lower_params" }
|
|
|
|
ven_pretty = { path = "../../vendor/pretty" }
|
|
|
|
bumpalo.workspace = true
|
|
crossbeam.workspace = true
|
|
parking_lot.workspace = true
|
|
tempfile.workspace = true
|
|
|
|
[dev-dependencies]
|
|
roc_test_utils_dir = { path = "../../test_utils_dir" }
|
|
|
|
indoc.workspace = true
|
|
maplit.workspace = true
|
|
pretty_assertions.workspace = true
|