Revert "don't use default flags when using roc_std just for its types"

This reverts commit 092a119eb7.
This commit is contained in:
Folkert de Vries 2022-08-03 21:18:56 +02:00
parent 092a119eb7
commit fe707a9d6c
4 changed files with 4 additions and 4 deletions

View file

@ -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"

View file

@ -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" }

View file

@ -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"

View file

@ -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"] }