mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
Revert "don't use default flags when using roc_std just for its types"
This reverts commit 092a119eb7
.
This commit is contained in:
parent
092a119eb7
commit
fe707a9d6c
4 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ roc_parse = { path = "../parse" }
|
|||
roc_build = { path = "../build", features = ["target-aarch64", "target-x86_64", "target-wasm32"] }
|
||||
roc_target = { path = "../roc_target" }
|
||||
roc_error_macros = { path = "../../error_macros" }
|
||||
roc_std = { path = "../../roc_std", default-features = false }
|
||||
roc_std = { path = "../../roc_std" }
|
||||
roc_debug_flags = {path="../debug_flags"}
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
either = "1.6.1"
|
||||
|
|
|
@ -6,7 +6,7 @@ license = "UPL-1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
roc_std = { path = "../roc_std", default-features = false }
|
||||
roc_std = { path = "../roc_std" }
|
||||
roc_can = { path = "../compiler/can" }
|
||||
roc_mono = { path = "../compiler/mono" }
|
||||
roc_load = { path = "../compiler/load" }
|
||||
|
|
|
@ -27,7 +27,7 @@ name = "host"
|
|||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
roc_std = { path = "../../../../roc_std", default-features = false }
|
||||
roc_std = { path = "../../../../roc_std" }
|
||||
libc = "0.2"
|
||||
indoc = "1.0.6"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ roc_types = { path = "../compiler/types" }
|
|||
roc_can = { path = "../compiler/can" }
|
||||
roc_fmt = { path = "../compiler/fmt" }
|
||||
roc_solve_problem = { path = "../compiler/solve_problem" }
|
||||
roc_std = { path = "../roc_std", default-features = false }
|
||||
roc_std = { path = "../roc_std" }
|
||||
ven_pretty = { path = "../vendor/pretty" }
|
||||
distance = "0.4.0"
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue