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