roc/crates/compiler/gen_wasm/Cargo.toml

18 lines
562 B
TOML
Raw Normal View History

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]
bitvec = "1"
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 }
roc_error_macros = { path = "../../error_macros" }