2021-09-05 15:07:37 +03:00
|
|
|
[package]
|
|
|
|
name = "roc_gen_wasm"
|
|
|
|
version = "0.1.0"
|
2022-05-16 18:04:17 +03:00
|
|
|
edition = "2021"
|
2021-09-05 15:07:37 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-08 23:45:19 +03:00
|
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
|
|
roc_builtins = { path = "../builtins" }
|
2021-09-05 15:07:37 +03:00
|
|
|
roc_collections = { path = "../collections" }
|
|
|
|
roc_module = { path = "../module" }
|
|
|
|
roc_mono = { path = "../mono" }
|
2022-01-27 01:33:02 +03:00
|
|
|
roc_target = { path = "../roc_target" }
|
2022-02-26 07:10:36 +03:00
|
|
|
roc_std = { path = "../../roc_std", default-features = false }
|
2022-01-23 11:40:34 +03:00
|
|
|
roc_error_macros = { path = "../../error_macros" }
|