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

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