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

@ -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