replace cargo deps with workspace in test_solve_helpers, test_syntax, types, uitest, unify, work, worker

This commit is contained in:
Luke Boswell 2024-11-29 11:31:48 +11:00
parent fdaaca8c8b
commit 624021bf49
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
7 changed files with 56 additions and 72 deletions

View file

@ -8,19 +8,19 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_can = { path = "../can" }
roc_derive = { path = "../derive" }
roc_load = { path = "../load" }
roc_module = { path = "../module" }
roc_packaging = { path = "../../packaging" }
roc_problem = { path = "../problem" }
roc_region = { path = "../region" }
roc_reporting = { path = "../../reporting" }
roc_solve = { path = "../solve" }
roc_late_solve = { path = "../late_solve" }
roc_solve_problem = { path = "../solve_problem" }
roc_target = { path = "../roc_target" }
roc_types = { path = "../types" }
roc_can.workspace = true
roc_derive.workspace = true
roc_load.workspace = true
roc_module.workspace = true
roc_packaging.workspace = true
roc_problem.workspace = true
roc_region.workspace = true
roc_reporting.workspace = true
roc_solve.workspace = true
roc_late_solve.workspace = true
roc_solve_problem.workspace = true
roc_target.workspace = true
roc_types.workspace = true
bumpalo.workspace = true
indoc.workspace = true

View file

@ -12,13 +12,13 @@ version.workspace = true
[dependencies]
bumpalo.workspace = true
roc_collections = { path = "../collections" }
roc_fmt = { path = "../fmt" }
roc_module = { path = "../module" }
roc_parse = { path = "../parse" }
roc_region = { path = "../region" }
roc_test_utils = { path = "../../test_utils" }
roc_test_utils_dir = { path = "../../test_utils_dir" }
roc_collections.workspace = true
roc_fmt.workspace = true
roc_module.workspace = true
roc_parse.workspace = true
roc_region.workspace = true
roc_test_utils.workspace = true
roc_test_utils_dir.workspace = true
[dev-dependencies]
indoc.workspace = true

View file

@ -8,15 +8,15 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_collections = { path = "../collections" }
roc_debug_flags = { path = "../debug_flags" }
roc_error_macros = { path = "../../error_macros" }
roc_module = { path = "../module" }
roc_region = { path = "../region" }
roc_serialize = { path = "../serialize" }
roc_parse = { path = "../parse" }
roc_collections.workspace = true
roc_debug_flags.workspace = true
roc_error_macros.workspace = true
roc_module.workspace = true
roc_region.workspace = true
roc_serialize.workspace = true
roc_parse.workspace = true
ven_pretty = { path = "../../vendor/pretty" }
ven_pretty.workspace = true
bumpalo.workspace = true
static_assertions.workspace = true

View file

@ -13,19 +13,19 @@ path = "src/uitest.rs"
harness = false
[dev-dependencies]
roc_builtins = { path = "../builtins" }
roc_collections = { path = "../collections" }
roc_derive = { path = "../derive", features = ["debug-derived-symbols"] }
roc_load = { path = "../load" }
roc_packaging = { path = "../../packaging" }
roc_module = { path = "../module", features = ["debug-symbols"] }
roc_mono = { path = "../mono" }
roc_parse = { path = "../parse" }
roc_problem = { path = "../problem" }
roc_reporting = { path = "../../reporting" }
roc_solve = { path = "../solve" }
roc_target = { path = "../roc_target" }
test_solve_helpers = { path = "../test_solve_helpers" }
roc_builtins.workspace = true
roc_collections.workspace = true
roc_derive = { workspace = true, features = ["debug-derived-symbols"] }
roc_load.workspace = true
roc_packaging.workspace = true
roc_module = { workspace = true, features = ["debug-symbols"] }
roc_mono.workspace = true
roc_parse.workspace = true
roc_problem.workspace = true
roc_reporting.workspace = true
roc_solve.workspace = true
roc_target.workspace = true
test_solve_helpers.workspace = true
bumpalo.workspace = true
indoc.workspace = true

View file

@ -8,27 +8,11 @@ license.workspace = true
version.workspace = true
[dependencies]
[dependencies.roc_collections]
path = "../collections"
[dependencies.roc_error_macros]
path = "../../error_macros"
[dependencies.roc_module]
path = "../module"
[dependencies.roc_types]
path = "../types"
[dependencies.roc_debug_flags]
path = "../debug_flags"
[dependencies.roc_tracing]
path = "../../tracing"
[dependencies.roc_checkmate]
path = "../checkmate"
[dependencies.roc_solve_schema]
path = "../solve_schema"
roc_collections.workspace = true
roc_error_macros.workspace = true
roc_module.workspace = true
roc_types.workspace = true
roc_debug_flags.workspace = true
roc_tracing.workspace = true
roc_checkmate.workspace = true
roc_solve_schema.workspace = true

View file

@ -8,6 +8,6 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_collections = { path = "../collections" }
roc_module = { path = "../module" }
roc_error_macros = { path = "../../error_macros" }
roc_collections.workspace = true
roc_module.workspace = true
roc_error_macros.workspace = true

View file

@ -8,9 +8,9 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_collections = { path = "../collections" }
roc_module = { path = "../module" }
roc_work = { path = "../work" }
roc_error_macros = { path = "../../error_macros" }
roc_collections.workspace = true
roc_module.workspace = true
roc_work.workspace = true
roc_error_macros.workspace = true
crossbeam.workspace = true