roc/crates/compiler/mono/Cargo.toml

33 lines
1.2 KiB
TOML
Raw Normal View History

2020-03-07 02:15:06 +03:00
[package]
name = "roc_mono"
version = "0.0.1"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2022-05-16 18:04:17 +03:00
edition = "2021"
2022-11-03 12:00:06 +03:00
description = "Roc's main intermediate representation (IR), which is responsible for monomorphization, defunctionalization, inserting ref-count instructions, and transforming a Roc program into a form that is easy to consume by a backend."
2020-03-07 02:15:06 +03:00
[dependencies]
roc_collections = { path = "../collections" }
roc_exhaustive = { path = "../exhaustive" }
2020-03-07 02:15:06 +03:00
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_derive_key = { path = "../derive_key" }
roc_derive = { path = "../derive" }
roc_intern = { path = "../intern" }
roc_late_solve = { path = "../late_solve" }
2022-08-06 20:01:07 +03:00
roc_std = { path = "../../roc_std" }
roc_problem = { path = "../problem" }
2021-11-21 01:25:30 +03:00
roc_builtins = { path = "../builtins" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
roc_error_macros = {path="../../error_macros"}
roc_debug_flags = {path="../debug_flags"}
roc_tracing = { path = "../../tracing" }
2020-07-28 02:13:49 +03:00
ven_pretty = { path = "../../vendor/pretty" }
2022-11-13 17:16:52 +03:00
bumpalo.workspace = true
hashbrown.workspace = true
static_assertions.workspace = true
bitvec.workspace = true