roc/compiler/gen_wasm/Cargo.toml

17 lines
519 B
TOML
Raw Normal View History

2021-09-05 15:07:37 +03:00
[package]
name = "roc_gen_wasm"
version = "0.1.0"
edition = "2018"
# 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-26 17:44:24 +03:00
roc_target = { path = "../target" }
2021-09-05 15:07:37 +03:00
roc_std = { path = "../../roc_std" }
roc_error_macros = { path = "../../error_macros" }