Merge branch 'main' of github.com:roc-lang/roc into wasm_module_crate

This commit is contained in:
Brian Carroll 2022-11-15 21:16:25 +00:00
commit 2fa4c33b77
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
89 changed files with 3161 additions and 493 deletions

View file

@ -7,8 +7,6 @@ license = "UPL-1.0"
description = "Provides the WASM backend to generate Roc binaries."
[dependencies]
bitvec = "1"
bumpalo = { version = "3.11.0", features = ["collections"] }
roc_builtins = { path = "../builtins" }
roc_collections = { path = "../collections" }
roc_intern = { path = "../intern" }
@ -18,3 +16,6 @@ roc_target = { path = "../roc_target" }
roc_std = { path = "../../roc_std" }
roc_error_macros = { path = "../../error_macros" }
roc_wasm_module = { path = "../../wasm_module" }
bitvec.workspace = true
bumpalo.workspace = true