replace cargo deps with workspace in cli_test_utils

This commit is contained in:
Luke Boswell 2024-11-29 10:42:20 +11:00
parent 8ad7ecdc10
commit 73305b97cb
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
2 changed files with 8 additions and 6 deletions

View file

@ -9,12 +9,12 @@ repository.workspace = true
version.workspace = true
[dependencies]
roc_collections = { path = "../compiler/collections" }
roc_load = { path = "../compiler/load" }
roc_module = { path = "../compiler/module" }
roc_reporting = { path = "../reporting" }
roc_command_utils = { path = "../utils/command" }
roc_cli = { path = "../cli" }
roc_collections.workspace = true
roc_load.workspace = true
roc_module.workspace = true
roc_reporting.workspace = true
roc_command_utils.workspace = true
roc_cli.workspace = true
bumpalo.workspace = true
criterion.workspace = true