roc/crates/compiler/gen_wasm/Cargo.toml

22 lines
623 B
TOML
Raw Normal View History

2021-09-05 15:07:37 +03:00
[package]
name = "roc_gen_wasm"
version = "0.0.1"
2022-05-16 18:04:17 +03:00
edition = "2021"
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2022-11-03 12:00:06 +03:00
description = "Provides the WASM backend to generate Roc binaries."
2021-09-05 15:07:37 +03:00
[dependencies]
2021-11-08 23:45:19 +03:00
roc_builtins = { path = "../builtins" }
2021-09-05 15:07:37 +03:00
roc_collections = { path = "../collections" }
roc_intern = { path = "../intern" }
2021-09-05 15:07:37 +03:00
roc_module = { path = "../module" }
roc_mono = { path = "../mono" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
2022-08-03 22:35:28 +03:00
roc_std = { path = "../../roc_std" }
roc_error_macros = { path = "../../error_macros" }
2022-11-13 12:01:50 +03:00
roc_wasm_module = { path = "../../wasm_module" }
2022-11-13 17:16:52 +03:00
bitvec.workspace = true
bumpalo.workspace = true