diff --git a/crates/compiler/can/Cargo.toml b/crates/compiler/can/Cargo.toml index e03af52a74..ebf1973cdc 100644 --- a/crates/compiler/can/Cargo.toml +++ b/crates/compiler/can/Cargo.toml @@ -24,7 +24,7 @@ bitvec.workspace = true bumpalo.workspace = true static_assertions.workspace = true -soa = { path = "../../soa" } +soa.workspace = true [dev-dependencies] indoc.workspace = true diff --git a/crates/compiler/collections/Cargo.toml b/crates/compiler/collections/Cargo.toml index 5c3ddbf81a..fd26c75bde 100644 --- a/crates/compiler/collections/Cargo.toml +++ b/crates/compiler/collections/Cargo.toml @@ -17,4 +17,4 @@ im.workspace = true wyhash.workspace = true smallvec.workspace = true -soa = { path = "../../soa" } +soa.workspace = true diff --git a/crates/compiler/constrain/Cargo.toml b/crates/compiler/constrain/Cargo.toml index 6e1d17b48b..ab750ac677 100644 --- a/crates/compiler/constrain/Cargo.toml +++ b/crates/compiler/constrain/Cargo.toml @@ -16,6 +16,7 @@ roc_parse = { path = "../parse" } roc_problem = { path = "../problem" } roc_region = { path = "../region" } roc_types = { path = "../types" } -soa = { path = "../../soa" } arrayvec.workspace = true + +soa.workspace = true diff --git a/crates/compiler/parse/Cargo.toml b/crates/compiler/parse/Cargo.toml index 23c164b62a..e4c137f997 100644 --- a/crates/compiler/parse/Cargo.toml +++ b/crates/compiler/parse/Cargo.toml @@ -15,7 +15,8 @@ roc_collections = { path = "../collections" } roc_module = { path = "../module" } roc_region = { path = "../region" } roc_error_macros = { path = "../../error_macros" } -soa = { path = "../../soa" } + +soa.workspace = true bumpalo.workspace = true encode_unicode.workspace = true diff --git a/crates/compiler/solve/Cargo.toml b/crates/compiler/solve/Cargo.toml index e9bc7fc332..19ba538961 100644 --- a/crates/compiler/solve/Cargo.toml +++ b/crates/compiler/solve/Cargo.toml @@ -23,11 +23,11 @@ roc_solve_problem = { path = "../solve_problem" } roc_solve_schema = { path = "../solve_schema" } roc_types = { path = "../types" } roc_unify = { path = "../unify" } -soa = { path = "../../soa" } arrayvec.workspace = true bumpalo.workspace = true +soa.workspace = true [dev-dependencies] roc_builtins = { path = "../builtins" } diff --git a/crates/compiler/types/Cargo.toml b/crates/compiler/types/Cargo.toml index 2d459709f7..41ed2ca595 100644 --- a/crates/compiler/types/Cargo.toml +++ b/crates/compiler/types/Cargo.toml @@ -15,9 +15,10 @@ roc_module = { path = "../module" } roc_region = { path = "../region" } roc_serialize = { path = "../serialize" } roc_parse = { path = "../parse" } -soa = { path = "../../soa" } ven_pretty = { path = "../../vendor/pretty" } bumpalo.workspace = true static_assertions.workspace = true + +soa.workspace = true