replace cargo deps with workspace in roc_std_heap, test_compile, valgrind tests, wasi-libc, wasm_*

This commit is contained in:
Luke Boswell 2024-11-29 11:07:43 +11:00
parent 4d427168a4
commit 1d3660df89
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
7 changed files with 29 additions and 29 deletions

View file

@ -161,6 +161,7 @@ roc_can = { path = "crates/compiler/can" }
roc_cli = { path = "crates/cli" }
roc_collections = { path = "crates/compiler/collections" }
roc_command_utils = { path = "crates/utils/command" }
roc_constrain = { path = "crates/compiler/constrain" }
roc_docs = { path = "crates/docs" }
roc_error_macros = { path = "crates/error_macros" }
roc_exhaustive = { path = "crates/compiler/exhaustive" }
@ -191,6 +192,7 @@ roc_test_utils = { path = "crates/test_utils" }
roc_tracing = { path = "crates/tracing" }
roc_types = { path = "crates/compiler/types" }
roc_wasm_interp = { path = "crates/wasm_interp" }
roc_wasm_module = { path = "crates/wasm_module" }
rustyline = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
rustyline-derive = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
schemars = "0.8.12"

View file

@ -9,5 +9,5 @@ repository = "https://github.com/roc-lang/roc"
version = "0.0.1"
[dependencies]
roc_std = { path = "../roc_std" }
memmap2 = "=0.9.4"
roc_std.workspace = true
memmap2 = "=0.9.4" # should this be a workspace dependency? workspace is at "0.5.10"

View file

@ -8,23 +8,23 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_builtins = { path = "../compiler/builtins" }
roc_builtins.workspace = true
roc_derive = { path = "../compiler/derive", features = [
"debug-derived-symbols",
] }
roc_region = { path = "../compiler/region" }
roc_collections = { path = "../compiler/collections" }
roc_load = { path = "../compiler/load" }
roc_parse = { path = "../compiler/parse" }
roc_can = { path = "../compiler/can" }
roc_module = { path = "../compiler/module" }
roc_types = { path = "../compiler/types" }
roc_problem = { path = "../compiler/problem" }
roc_constrain = { path = "../compiler/constrain" }
roc_reporting = { path = "../reporting" }
roc_target = { path = "../compiler/roc_target" }
roc_solve = { path = "../compiler/solve" }
roc_solve_problem = { path = "../compiler/solve_problem" }
roc_region.workspace = true
roc_collections.workspace = true
roc_load.workspace = true
roc_parse.workspace = true
roc_can.workspace = true
roc_module.workspace = true
roc_types.workspace = true
roc_problem.workspace = true
roc_constrain.workspace = true
roc_reporting.workspace = true
roc_target.workspace = true
roc_solve.workspace = true
roc_solve_problem.workspace = true
roc_specialize_types.workspace = true
bumpalo.workspace = true

View file

@ -7,14 +7,14 @@ license.workspace = true
version.workspace = true
[dev-dependencies]
cli_test_utils = { path = "../cli_test_utils" }
roc_command_utils = { path = "../utils/command" }
roc_build = { path = "../compiler/build" }
roc_linker = { path = "../linker" }
roc_load = { path = "../compiler/load" }
roc_mono = { path = "../compiler/mono" }
roc_packaging = { path = "../packaging" }
roc_reporting = { path = "../reporting" }
cli_test_utils.workspace = true
roc_command_utils.workspace = true
roc_build.workspace = true
roc_linker.workspace = true
roc_load.workspace = true
roc_mono.workspace = true
roc_packaging.workspace = true
roc_reporting.workspace = true
bumpalo.workspace = true
indoc.workspace = true

View file

@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true
[build-dependencies]
roc_command_utils = { path = "../utils/command" }
roc_command_utils.workspace = true

View file

@ -12,8 +12,7 @@ name = "roc_wasm_interp"
path = "src/main.rs"
[dependencies]
roc_wasm_module = { path = "../wasm_module" }
roc_wasm_module.workspace = true
bitvec.workspace = true
bumpalo.workspace = true
clap.workspace = true

View file

@ -8,7 +8,6 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_error_macros = { path = "../error_macros" }
roc_error_macros.workspace = true
bitvec.workspace = true
bumpalo.workspace = true