Disable roc_std default features in gen_wasm and test_gen

This commit is contained in:
Richard Feldman 2022-08-03 22:40:12 -04:00
parent e7b4d3f18d
commit 9f221d7fab
No known key found for this signature in database
GPG Key ID: 7E4127D1E4241798
2 changed files with 2 additions and 2 deletions

View File

@ -13,5 +13,5 @@ roc_collections = { path = "../collections" }
roc_module = { path = "../module" }
roc_mono = { path = "../mono" }
roc_target = { path = "../roc_target" }
roc_std = { path = "../../roc_std" }
roc_std = { path = "../../roc_std", default-features = false }
roc_error_macros = { path = "../../error_macros" }

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" }
roc_std = { path = "../../roc_std", default-features = false }
roc_debug_flags = {path="../debug_flags"}
bumpalo = { version = "3.8.0", features = ["collections"] }
either = "1.6.1"