restore Cargo.toml using workspace deps

This commit is contained in:
Luke Boswell 2024-11-29 09:57:01 +11:00
parent 57dc075b8b
commit 0523a0a539
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
6 changed files with 9 additions and 6 deletions

View file

@ -24,7 +24,7 @@ bitvec.workspace = true
bumpalo.workspace = true bumpalo.workspace = true
static_assertions.workspace = true static_assertions.workspace = true
soa = { path = "../../soa" } soa.workspace = true
[dev-dependencies] [dev-dependencies]
indoc.workspace = true indoc.workspace = true

View file

@ -17,4 +17,4 @@ im.workspace = true
wyhash.workspace = true wyhash.workspace = true
smallvec.workspace = true smallvec.workspace = true
soa = { path = "../../soa" } soa.workspace = true

View file

@ -16,6 +16,7 @@ roc_parse = { path = "../parse" }
roc_problem = { path = "../problem" } roc_problem = { path = "../problem" }
roc_region = { path = "../region" } roc_region = { path = "../region" }
roc_types = { path = "../types" } roc_types = { path = "../types" }
soa = { path = "../../soa" }
arrayvec.workspace = true arrayvec.workspace = true
soa.workspace = true

View file

@ -15,7 +15,8 @@ roc_collections = { path = "../collections" }
roc_module = { path = "../module" } roc_module = { path = "../module" }
roc_region = { path = "../region" } roc_region = { path = "../region" }
roc_error_macros = { path = "../../error_macros" } roc_error_macros = { path = "../../error_macros" }
soa = { path = "../../soa" }
soa.workspace = true
bumpalo.workspace = true bumpalo.workspace = true
encode_unicode.workspace = true encode_unicode.workspace = true

View file

@ -23,11 +23,11 @@ roc_solve_problem = { path = "../solve_problem" }
roc_solve_schema = { path = "../solve_schema" } roc_solve_schema = { path = "../solve_schema" }
roc_types = { path = "../types" } roc_types = { path = "../types" }
roc_unify = { path = "../unify" } roc_unify = { path = "../unify" }
soa = { path = "../../soa" }
arrayvec.workspace = true arrayvec.workspace = true
bumpalo.workspace = true bumpalo.workspace = true
soa.workspace = true
[dev-dependencies] [dev-dependencies]
roc_builtins = { path = "../builtins" } roc_builtins = { path = "../builtins" }

View file

@ -15,9 +15,10 @@ roc_module = { path = "../module" }
roc_region = { path = "../region" } roc_region = { path = "../region" }
roc_serialize = { path = "../serialize" } roc_serialize = { path = "../serialize" }
roc_parse = { path = "../parse" } roc_parse = { path = "../parse" }
soa = { path = "../../soa" }
ven_pretty = { path = "../../vendor/pretty" } ven_pretty = { path = "../../vendor/pretty" }
bumpalo.workspace = true bumpalo.workspace = true
static_assertions.workspace = true static_assertions.workspace = true
soa.workspace = true