replace cargo deps with workspace in linker, packaging, repl_*

This commit is contained in:
Luke Boswell 2024-11-29 10:53:54 +11:00
parent 30d8f7ee59
commit 6c6f6e08a9
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
7 changed files with 85 additions and 72 deletions

View file

@ -13,15 +13,15 @@ name = "roc_linker"
path = "src/lib.rs"
[dependencies]
roc_collections = { path = "../compiler/collections" }
roc_error_macros = { path = "../error_macros" }
roc_module = { path = "../compiler/module" }
roc_load = { path = "../compiler/load" }
roc_mono = { path = "../compiler/mono" }
roc_packaging = { path = "../packaging" }
roc_reporting = { path = "../reporting" }
roc_solve = { path = "../compiler/solve" }
roc_target = { path = "../compiler/roc_target" }
roc_collections.workspace = true
roc_error_macros.workspace = true
roc_module.workspace = true
roc_load.workspace = true
roc_mono.workspace = true
roc_packaging.workspace = true
roc_reporting.workspace = true
roc_solve.workspace = true
roc_target.workspace = true
bincode.workspace = true
bumpalo.workspace = true