Move test_reporting into load to break cyclic dep

This commit is contained in:
Richard Feldman 2023-11-10 16:09:48 -05:00
parent 6bd9fcd6e9
commit 896c010645
No known key found for this signature in database
GPG Key ID: BAF1322FA6809A13
5 changed files with 25 additions and 26 deletions

21
Cargo.lock generated
View File

@ -2703,17 +2703,28 @@ name = "roc_load"
version = "0.0.1"
dependencies = [
"bumpalo",
"indoc",
"insta",
"pretty_assertions",
"roc_builtins",
"roc_can",
"roc_collections",
"roc_constrain",
"roc_derive",
"roc_error_macros",
"roc_load_internal",
"roc_module",
"roc_packaging",
"roc_parse",
"roc_problem",
"roc_region",
"roc_reporting",
"roc_solve",
"roc_solve_problem",
"roc_target",
"roc_test_utils",
"roc_types",
"ven_pretty",
]
[[package]]
@ -2991,29 +3002,19 @@ dependencies = [
"bumpalo",
"byte-unit",
"distance",
"indoc",
"insta",
"itertools 0.10.5",
"pretty_assertions",
"roc_builtins",
"roc_can",
"roc_collections",
"roc_constrain",
"roc_derive",
"roc_error_macros",
"roc_exhaustive",
"roc_fmt",
"roc_load",
"roc_module",
"roc_packaging",
"roc_parse",
"roc_problem",
"roc_region",
"roc_solve",
"roc_solve_problem",
"roc_std",
"roc_target",
"roc_test_utils",
"roc_types",
"ven_pretty",
]

View File

@ -34,3 +34,17 @@ bumpalo.workspace = true
[target.'cfg(not(windows))'.build-dependencies]
roc_load_internal = { path = "../load_internal" }
[dev-dependencies]
roc_constrain = { path = "../constrain" }
roc_derive = { path = "../derive" }
roc_parse = { path = "../parse" }
roc_problem = { path = "../problem" }
roc_region = { path = "../region" }
roc_solve_problem = { path = "../solve_problem" }
ven_pretty = { path = "../../vendor/pretty" }
roc_test_utils = { path = "../../test_utils" }
indoc.workspace = true
insta.workspace = true
pretty_assertions.workspace = true

View File

@ -27,19 +27,3 @@ itertools = "0.10.5"
bumpalo.workspace = true
distance.workspace = true
[dev-dependencies]
roc_builtins = { path = "../compiler/builtins" }
roc_constrain = { path = "../compiler/constrain" }
roc_derive = { path = "../compiler/derive" }
roc_load = { path = "../compiler/load" }
roc_packaging = { path = "../packaging" }
roc_parse = { path = "../compiler/parse" }
roc_problem = { path = "../compiler/problem" }
roc_solve = { path = "../compiler/solve" }
roc_target = { path = "../compiler/roc_target" }
roc_test_utils = { path = "../test_utils" }
indoc.workspace = true
insta.workspace = true
pretty_assertions.workspace = true